Skip to content
Snippets Groups Projects
Commit 676c18f4 authored by rswindell's avatar rswindell
Browse files

Adjustment to change introduced in rev1.67:

When displaying message body text, skip all initial ocurrences of CR or LF
(rather than all initial white-space). Some people use white-space for
centering or justifying blocks of text and we don't want to mess up the
presentation of their messages.
parent edc1f7c6
No related branches found
No related tags found
No related merge requests found
......@@ -262,7 +262,7 @@ void sbbs_t::show_msg(smbmsg_t* msg, long mode, post_t* post)
bputs(text[MIMEDecodedPlainText]);
}
truncsp(p);
SKIP_WHITESPACE(p);
SKIP_CRLF(p);
putmsg(p, mode);
smb_freemsgtxt(txt);
if(column)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment