mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -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
|
#endif
|
||||||
}
|
}
|
||||||
|
#ifdef FEAT_CONCEAL
|
||||||
|
if (!vim_isprintc_strict(*conceal_char))
|
||||||
|
{
|
||||||
|
EMSG(_("E844: invalid cchar value"));
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
arg = skipwhite(arg + 7);
|
arg = skipwhite(arg + 7);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@@ -714,6 +714,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 */
|
||||||
|
/**/
|
||||||
|
104,
|
||||||
/**/
|
/**/
|
||||||
103,
|
103,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user