]> granicus.if.org Git - vim/commitdiff
patch 8.0.0640: mismatch between help and actual message v8.0.0640
authorBram Moolenaar <Bram@vim.org>
Tue, 13 Jun 2017 14:34:54 +0000 (16:34 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 13 Jun 2017 14:34:54 +0000 (16:34 +0200)
Problem:    Mismatch between help and actual message for ":syn conceal".
Solution:   Change the message to match the help. (Ken Takata)

src/syntax.c
src/version.c

index 10805f4e821d6e3fad791dc8ca7fc1581b3a83c4..225853e4eeaafc63fbed3d7749989a75f0942892 100644 (file)
@@ -3436,9 +3436,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int syncing UNUSED)
     if (*arg == NUL)
     {
        if (curwin->w_s->b_syn_conceal)
-           MSG(_("syn conceal on"));
+           MSG(_("syntax conceal on"));
        else
-           MSG(_("syn conceal off"));
+           MSG(_("syntax conceal off"));
     }
     else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2)
        curwin->w_s->b_syn_conceal = TRUE;
index 13dff53faf1460a53e91027a78178536d8244541..5d935feb6fec6b6c1aa2048a1ef695b0a95e051e 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    640,
 /**/
     639,
 /**/