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

From-SVN: r4403
This commit is contained in:
Richard Stallman 1993-05-09 22:17:27 +00:00
parent 265b1bae81
commit a8d78514aa
1 changed files with 1 additions and 1 deletions

View File

@ -4683,7 +4683,7 @@ mtherr (name, code)
*/
if ((code <= 0) || (code >= NMSGS))
code = 0;
sprintf (errstr, "\n%s %s error\n", name, ermsg[code]);
sprintf (errstr, " %s %s error", name, ermsg[code]);
if (extra_warnings)
warning (errstr);
/* Set global error message word */