lib/mu-str.c: squash white space ctrl chars to spaces

When processing multiple lines for a subject line separated by TAB
characters we don't want to eliminate the control character totally but
replace it with a simple space. I've left the control handling as before
for non-white space characters.

Signed-off-by: Alex Bennée <alex@bennee.com>
This commit is contained in:
Alex Bennée
2014-05-06 10:04:26 +01:00
parent abe7ed306d
commit 29a16d7ae1

View File

@ -1056,15 +1056,19 @@ mu_str_remove_ctrl_in_place (char *str)
if (!iscntrl(*cur)) if (!iscntrl(*cur))
continue; continue;
/* control char detected... */ if (isspace(*cur)) {
gstr = g_string_sized_new (strlen (str)); /* squash special white space into a simple space */
for (cur = str; *cur; ++cur) *cur = ' ';
if (!iscntrl (*cur)) } else {
g_string_append_c (gstr, *cur); /* remove other control characters */
memcpy (str, gstr->str, gstr->len); /* fits */ gstr = g_string_sized_new (strlen (str));
g_string_free (gstr, TRUE); for (cur = str; *cur; ++cur)
if (!iscntrl (*cur))
break; g_string_append_c (gstr, *cur);
memcpy (str, gstr->str, gstr->len); /* fits */
g_string_free (gstr, TRUE);
break;
}
} }
return str; return str;