mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.3.104
Problem: Conceal: using Tab for cchar causes problems. (ZyX) Solution: Do not accept a control character for cchar.
This commit is contained in:
@@ -4537,6 +4537,13 @@ get_syn_options(arg, opt, conceal_char)
|
||||
;
|
||||
#endif
|
||||
}
|
||||
#ifdef FEAT_CONCEAL
|
||||
if (!vim_isprintc_strict(*conceal_char))
|
||||
{
|
||||
EMSG(_("E844: invalid cchar value"));
|
||||
return NULL;
|
||||
}
|
||||
#endif
|
||||
arg = skipwhite(arg + 7);
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user