mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
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)
This commit is contained in:
@@ -3436,9 +3436,9 @@ syn_cmd_conceal(exarg_T *eap UNUSED, int syncing UNUSED)
|
|||||||
if (*arg == NUL)
|
if (*arg == NUL)
|
||||||
{
|
{
|
||||||
if (curwin->w_s->b_syn_conceal)
|
if (curwin->w_s->b_syn_conceal)
|
||||||
MSG(_("syn conceal on"));
|
MSG(_("syntax conceal on"));
|
||||||
else
|
else
|
||||||
MSG(_("syn conceal off"));
|
MSG(_("syntax conceal off"));
|
||||||
}
|
}
|
||||||
else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2)
|
else if (STRNICMP(arg, "on", 2) == 0 && next - arg == 2)
|
||||||
curwin->w_s->b_syn_conceal = TRUE;
|
curwin->w_s->b_syn_conceal = TRUE;
|
||||||
|
@@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
640,
|
||||||
/**/
|
/**/
|
||||||
639,
|
639,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user