Correct handling of continuation lines. Instead of treating the
backslash as nothing, treat it like a space so that adjacent lines aren't glued together. PR: 8479 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
This commit is contained in:
parent
1aa95d9355
commit
edba9b52a2
@ -2040,6 +2040,10 @@ get_line()
|
||||
cp--;
|
||||
len--;
|
||||
}
|
||||
if (cont_line) {
|
||||
*++cp = ' ';
|
||||
len++;
|
||||
}
|
||||
*++cp = '\0';
|
||||
if (len > 0) {
|
||||
totlen += len;
|
||||
|
@ -2040,6 +2040,10 @@ get_line()
|
||||
cp--;
|
||||
len--;
|
||||
}
|
||||
if (cont_line) {
|
||||
*++cp = ' ';
|
||||
len++;
|
||||
}
|
||||
*++cp = '\0';
|
||||
if (len > 0) {
|
||||
totlen += len;
|
||||
|
Loading…
Reference in New Issue
Block a user