I don't know why this is_true_eol test is here, but is is NEVER set at
this point, so it breaks control characters - leaving them to
lib-renderline to handle, which I don't want.
Signed-off-by: NeilBrown <neil@brown.name>
}
if (ch == '\r' && noret) {
/* do nothing */
- } else if (ch < ' ' && ch != '\t' && is_true_eol) {
+ } else if (ch < ' ' && ch != '\t') {
buf_concat(&b, "<fg:red>^");
buf_append(&b, '@' + ch);
buf_concat(&b, "</>");