Skip to content

Commit 8161551

Browse files
committed
patch 8.0.0062
Problem: No digraph for HORIZONTAL ELLIPSIS. Solution: Use ",.". (Hans Ginzel, closes #1226)
1 parent aab3383 commit 8161551

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

runtime/doc/digraph.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ a standard meaning:
147147
Two 2 Hook
148148
Nine 9 Horn
149149

150-
Equals = Cyrillic (= used as second char)
150+
Equals = Cyrillic (= used as second char)
151151
Asterisk * Greek
152152
Percent sign % Greek/Cyrillic special
153153
Plus + smalls: Arabic, capitals: Hebrew
@@ -926,6 +926,7 @@ char digraph hex dec official name ~
926926
† /- 2020 8224 DAGGER
927927
‡ /= 2021 8225 DOUBLE DAGGER
928928
‥ .. 2025 8229 TWO DOT LEADER
929+
… ,. 2026 8230 HORIZONTAL ELLIPSIS
929930
‰ %0 2030 8240 PER MILLE SIGN
930931
′ 1' 2032 8242 PRIME
931932
″ 2' 2033 8243 DOUBLE PRIME

src/digraph.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,6 +1312,7 @@ static digr_T digraphdefault[] =
13121312
{'/', '-', 0x2020},
13131313
{'/', '=', 0x2021},
13141314
{'.', '.', 0x2025},
1315+
{',', '.', 0x2026},
13151316
{'%', '0', 0x2030},
13161317
{'1', '\'', 0x2032},
13171318
{'2', '\'', 0x2033},

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
62,
767769
/**/
768770
61,
769771
/**/

0 commit comments

Comments
 (0)