Skip to content
Snippets Groups Projects
Commit 9d854dfa authored by deuce's avatar deuce
Browse files

For the purposes of checking if the next line starts with whitespace (and

therefore the current line ends with a hard CR), allow CR and LF to be
detected as whitespace as well.

This is simply removing code though, so the expectation that I wrote that
code for a reason is haunting me.
parent 198e7661
No related branches found
No related tags found
No related merge requests found
......@@ -278,7 +278,7 @@ char* wordwrap(char* inbuf, int len, int oldlen, BOOL handle_quotes)
ocol=prefix_len+1;
old_prefix_bytes=prefix_bytes;
}
else if(isspace((unsigned char)inbuf[i+1]) && inbuf[i+1] != '\n' && inbuf[i+1] != '\r') { /* Next line starts with whitespace. This is a "hard" CR. */
else if(isspace((unsigned char)inbuf[i+1])) { /* Next line starts with whitespace. This is a "hard" CR. */
linebuf[l++]='\r';
linebuf[l++]='\n';
outbuf_append(&outbuf, &outp, linebuf, l, &outbuf_size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment