Commit a8d78514 by Richard Stallman

(mtherr): Don't put newlines in error message string.

From-SVN: r4403
parent 265b1bae
...@@ -4683,7 +4683,7 @@ mtherr (name, code) ...@@ -4683,7 +4683,7 @@ mtherr (name, code)
*/ */
if ((code <= 0) || (code >= NMSGS)) if ((code <= 0) || (code >= NMSGS))
code = 0; code = 0;
sprintf (errstr, "\n%s %s error\n", name, ermsg[code]); sprintf (errstr, " %s %s error", name, ermsg[code]);
if (extra_warnings) if (extra_warnings)
warning (errstr); warning (errstr);
/* Set global error message word */ /* Set global error message word */
......
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