(do_cleaning): Don't blank out backslash-escaped newlines in double

quoted strings.

From-SVN: r10355
This commit is contained in:
Richard Kenner 1995-09-14 17:41:30 -04:00
parent b37d04bc2e
commit 741d3d8a00

View File

@ -3970,7 +3970,9 @@ do_cleaning (new_clean_text_base, new_clean_text_limit)
if (++scan_p >= new_clean_text_limit)
abort ();
}
*scan_p++ = ' ';
if (!isspace (*scan_p))
*scan_p = ' ';
scan_p++;
break;
case '\\': /* Handle line continuations. */