Commit 741d3d8a by Richard Kenner

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

quoted strings.

From-SVN: r10355
parent b37d04bc
...@@ -3970,7 +3970,9 @@ do_cleaning (new_clean_text_base, new_clean_text_limit) ...@@ -3970,7 +3970,9 @@ do_cleaning (new_clean_text_base, new_clean_text_limit)
if (++scan_p >= new_clean_text_limit) if (++scan_p >= new_clean_text_limit)
abort (); abort ();
} }
*scan_p++ = ' '; if (!isspace (*scan_p))
*scan_p = ' ';
scan_p++;
break; break;
case '\\': /* Handle line continuations. */ case '\\': /* Handle line continuations. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment