Fix an error spotted by Hajo:

The GRAY_TEXT special character "|" was not seen as such by one function
This probably fix off-by-one error when word-wrapping text
and maybe make the character invisible on displayed text
This commit is contained in:
Ali El Gariani 2007-08-20 18:54:33 +00:00
parent 4cf1ca317c
commit ac471c8213

View File

@ -202,7 +202,7 @@ bool is_format_char(char c)
case BAD_TEXT:
case NORMAL_TEXT:
case BLACK_TEXT:
// ?? GRAY_TEXT
case GRAY_TEXT:
case BOLD_TEXT:
case NULL_MARKUP:
return true;