changeset 11514:7c42cf66d5be v8.0.0640

patch 8.0.0640: mismatch between help and actual message commit https://github.com/vim/vim/commit/83064068eaabf75a7d235b0eec561dccbcb96b31 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 13 16:34:54 2017 +0200 patch 8.0.0640: mismatch between help and actual message Problem: Mismatch between help and actual message for ":syn conceal". Solution: Change the message to match the help. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Tue, 13 Jun 2017 16:45:03 +0200
parents f38a60ea8c05
children c3c8aadeae2b
files src/syntax.c src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -3436,9 +3436,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int
     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;
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    640,
+/**/
     639,
 /**/
     638,