# HG changeset patch # User Bram Moolenaar # Date 1599585305 -7200 # Node ID 1b23391fac7e1fe0d888b37bf4d86d62afca562a # Parent d4c7b3e9cd17b788d7af02b1a93c3523798b92aa patch 8.2.1635: no digraph for 0x2022 BULLET Commit: https://github.com/vim/vim/commit/57ad94c5a9ee6f3626e1ec728519a8558a4346c8 Author: Bram Moolenaar Date: Tue Sep 8 19:06:30 2020 +0200 patch 8.2.1635: no digraph for 0x2022 BULLET Problem: No digraph for 0x2022 BULLET. Solution: Use "oo". (Hans Ginzel, closes https://github.com/vim/vim/issues/6904) diff --git a/runtime/doc/digraph.txt b/runtime/doc/digraph.txt --- 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1635, +/**/ 1634, /**/ 1633,