From: Bram Moolenaar Date: Mon, 13 Apr 2020 17:46:43 +0000 (+0200) Subject: patch 8.2.0575: :digraph! not tested X-Git-Tag: v8.2.0575 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3242346cf1c2ff8b0315cb2cb98e731bfa952c0;p=vim patch 8.2.0575: :digraph! not tested Problem: :digraph! not tested. Solution: Add a test. (Dominique Pelle, closes #5925) --- diff --git a/src/testdir/test_digraph.vim b/src/testdir/test_digraph.vim index 3e3dfa89a..9e7d6f4bb 100644 --- a/src/testdir/test_digraph.vim +++ b/src/testdir/test_digraph.vim @@ -434,6 +434,18 @@ func Test_digraphs_output() call assert_equal('Z% Ж 1046', matchstr(out, '\C\')) call assert_equal('u- ū 363', matchstr(out, '\C\')) call assert_equal('SH ^A 1', matchstr(out, '\C\')) + call assert_notmatch('Latin supplement', out) + + let out_bang_without_custom = execute(':digraph!') + digraph lt 60 + let out_bang_with_custom = execute(':digraph!') + call assert_notmatch('lt', out_bang_without_custom) + call assert_match("^\n" + \ .. "NU ^@ 10 .*\n" + \ .. "Latin supplement\n" + \ .. "!I ¡ 161 .*\n" + \ .. ".*\n" + \ .. 'Custom\n.*\', out_bang_with_custom) bw! endfunc diff --git a/src/version.c b/src/version.c index 3bb947911..0705e75d6 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 575, /**/ 574, /**/