Skip to content

Commit 8306406

Browse files
committed
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)
1 parent 9a48961 commit 8306406

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/syntax.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3436,9 +3436,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int syncing UNUSED)
34363436
if (*arg == NUL)
34373437
{
34383438
if (curwin->w_s->b_syn_conceal)
3439-
MSG(_("syn conceal on"));
3439+
MSG(_("syntax conceal on"));
34403440
else
3441-
MSG(_("syn conceal off"));
3441+
MSG(_("syntax conceal off"));
34423442
}
34433443
else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2)
34443444
curwin->w_s->b_syn_conceal = TRUE;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
640,
767769
/**/
768770
639,
769771
/**/

0 commit comments

Comments
 (0)