]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1143 v7.3.1143
authorBram Moolenaar <Bram@vim.org>
Fri, 7 Jun 2013 17:53:10 +0000 (19:53 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 7 Jun 2013 17:53:10 +0000 (19:53 +0200)
Problem:    When mapping NUL it is displayed as an X.
Solution:   Check for KS_ZERO instead of K_ZERO. (Yasuhiro Matsumoto)

src/message.c
src/version.c

index b574df63dea788a24ccbac834039a7c7561191c3..8330ef7387dfbd4a83e4e08a6eef556cd67e3947 100644 (file)
@@ -1577,7 +1577,7 @@ str2special(sp, from)
        {
            c = TO_SPECIAL(str[1], str[2]);
            str += 2;
-           if (c == K_ZERO)    /* display <Nul> as ^@ */
+           if (c == KS_ZERO)   /* display <Nul> as ^@ or <Nul> */
                c = NUL;
        }
        if (IS_SPECIAL(c) || modifiers) /* special key */
index b3c7be57392dce8dd2576edba99c78d495cdf877..2d0e42fe87e07031a994a8983819d4e806cced21 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1143,
 /**/
     1142,
 /**/