diff --git a/runtime/doc/digraph.txt b/runtime/doc/digraph.txt index e24f7e945a..79c7cf042d 100644 --- a/runtime/doc/digraph.txt +++ b/runtime/doc/digraph.txt @@ -921,6 +921,7 @@ char digraph hex dec official name ~ ‟ 9" 201F 8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK † /- 2020 8224 DAGGER ‡ /= 2021 8225 DOUBLE DAGGER +• oo 2022 8226 BULLET ‥ .. 2025 8229 TWO DOT LEADER … ,. 2026 8230 HORIZONTAL ELLIPSIS ‰ %0 2030 8240 PER MILLE SIGN diff --git a/src/digraph.c b/src/digraph.c index 7e6128df70..fd78a16ecd 100644 --- a/src/digraph.c +++ b/src/digraph.c @@ -1173,6 +1173,7 @@ static digr_T digraphdefault[] = {'9', '"', 0x201f}, {'/', '-', 0x2020}, {'/', '=', 0x2021}, + {'o', 'o', 0x2022}, {'.', '.', 0x2025}, {',', '.', 0x2026}, {'%', '0', 0x2030}, diff --git a/src/version.c b/src/version.c index d941c16117..2a2de13bbf 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1635, /**/ 1634, /**/