aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-02-12 20:48:35 +0000
committerRichard M. Stallman1996-02-12 20:48:35 +0000
commitc889e0d82380a471d7779f6d726d01bd74b1a8f9 (patch)
treef59d173a44f36823ced48cc12b5736ee9d6b43a1 /src
parent1b8f42ec233041f7d4590ddfe7a534a85f1d4dc6 (diff)
downloademacs-c889e0d82380a471d7779f6d726d01bd74b1a8f9.tar.gz
emacs-c889e0d82380a471d7779f6d726d01bd74b1a8f9.zip
(x_error_quitter): Add newline to error message.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 1c22b48e0b7..cb4704db937 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -4585,7 +4585,7 @@ x_error_quitter (display, error)
4585 original error handler. */ 4585 original error handler. */
4586 4586
4587 XGetErrorText (display, error->error_code, buf, sizeof (buf)); 4587 XGetErrorText (display, error->error_code, buf, sizeof (buf));
4588 sprintf (buf1, "X protocol error: %s on protocol request %d", 4588 sprintf (buf1, "X protocol error: %s on protocol request %d\n",
4589 buf, error->request_code); 4589 buf, error->request_code);
4590 x_connection_closed (display, buf1); 4590 x_connection_closed (display, buf1);
4591} 4591}