contains a character that would become double width.
-*options.txt* For Vim version 7.3e. Last change: 2010 Aug 01
+*options.txt* For Vim version 7.3e. Last change: 2010 Aug 04
VIM REFERENCE MANUAL by Bram Moolenaar
"single": Use the same width as characters in US-ASCII. This is
expected by most users.
"double": Use twice the width of ASCII characters.
+ *E834* *E835*
+ The value "double" cannot be used if 'listchars' or 'fillchars'
+ contains a character that would be double width.
There are a number of CJK fonts for which the width of glyphs for
those characters are solely based on how many octets they take in
{
if (check_opt_strings(p_ambw, p_ambw_values, FALSE) != OK)
errmsg = e_invarg;
+ else if (set_chars_option(&p_lcs) != NULL)
+ errmsg = (char_u *)_("E834: Conflicts with value of 'listchars'");
+# if defined(FEAT_WINDOWS) || defined(FEAT_FOLDING)
+ else if (set_chars_option(&p_fcs) != NULL)
+ errmsg = (char_u *)_("E835: Conflicts with value of 'fillchars'");
+# endif
}
#endif