Skip to content

Commit 57ad94c

Browse files
committed
patch 8.2.1635: no digraph for 0x2022 BULLET
Problem: No digraph for 0x2022 BULLET. Solution: Use "oo". (Hans Ginzel, closes #6904)
1 parent 1c6737b commit 57ad94c

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

runtime/doc/digraph.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,7 @@ char digraph hex dec official name ~
921921
‟ 9" 201F 8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK
922922
† /- 2020 8224 DAGGER
923923
‡ /= 2021 8225 DOUBLE DAGGER
924+
• oo 2022 8226 BULLET
924925
‥ .. 2025 8229 TWO DOT LEADER
925926
… ,. 2026 8230 HORIZONTAL ELLIPSIS
926927
‰ %0 2030 8240 PER MILLE SIGN

src/digraph.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,6 +1173,7 @@ static digr_T digraphdefault[] =
11731173
{'9', '"', 0x201f},
11741174
{'/', '-', 0x2020},
11751175
{'/', '=', 0x2021},
1176+
{'o', 'o', 0x2022},
11761177
{'.', '.', 0x2025},
11771178
{',', '.', 0x2026},
11781179
{'%', '0', 0x2030},

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,8 @@ static char *(features[]) =
754754

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1635,
757759
/**/
758760
1634,
759761
/**/

0 commit comments

Comments
 (0)