]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_error_quitter): Add newline to error message.
authorRichard M. Stallman <rms@gnu.org>
Mon, 12 Feb 1996 20:48:35 +0000 (20:48 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 12 Feb 1996 20:48:35 +0000 (20:48 +0000)
src/xterm.c

index 1c22b48e0b70a58a979eb8b904748d539b24924c..cb4704db937834c295d69e07dcb6307359112b90 100644 (file)
@@ -4585,7 +4585,7 @@ x_error_quitter (display, error)
      original error handler.  */
 
   XGetErrorText (display, error->error_code, buf, sizeof (buf));
-  sprintf (buf1, "X protocol error: %s on protocol request %d",
+  sprintf (buf1, "X protocol error: %s on protocol request %d\n",
           buf, error->request_code);
   x_connection_closed (display, buf1);
 }