vim-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)
83064068ea
This commit is contained in:
Jan Edmund Lazo
2018-07-03 20:58:22 -04:00
parent bd51a0cd04
commit a8071354e1

View File

@@ -3034,9 +3034,9 @@ static void syn_cmd_conceal(exarg_T *eap, int syncing)
next = skiptowhite(arg);
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;