Commit 81dd58a6 by Richard Stallman

*** empty log message ***

From-SVN: r946
parent 2dcb563f
...@@ -652,9 +652,10 @@ read_rtx (infile) ...@@ -652,9 +652,10 @@ read_rtx (infile)
/* \; makes stuff for a C string constant containing /* \; makes stuff for a C string constant containing
newline and tab. */ newline and tab. */
if (c == ';') if (c == ';')
obstack_grow (rtl_obstack, "\\n\\t", 4); {
else obstack_grow (rtl_obstack, "\\n\\t", 4);
obstack_1grow (rtl_obstack, c); continue;
}
} }
else if (c == '"') else if (c == '"')
break; break;
......
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