last_special = special;
}
- if (IsWPrint (wc) || (Charset_is_utf8 && wc == 0x00A0))
+ if (IsWPrint (wc))
{
if (wc == ' ')
space = ch;
- else if (Charset_is_utf8 && wc == 0x00A0)
- {
- /* Convert non-breaking space to normal space. The local variable
- * `space' is not set here so that the caller of this function won't
- * attempt to wrap at this character. */
- wc = ' ';
- }
t = wcwidth (wc);
if (col + t > wrap_cols)
break;