summaryrefslogtreecommitdiff
path: root/src/xterm.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-27 00:25:07 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-27 00:25:07 +0000
commit5e5f53d71b12553d202c2842a89ddee019de3ac7 (patch)
tree3ba1d0f72105eafa90cf7bd669edcc2e255360bc /src/xterm.c
parent1b29e15287b791af1c90134e0db550585b41395d (diff)
downloademacs-5e5f53d71b12553d202c2842a89ddee019de3ac7.tar.gz
(x_error_quitter): Delete newline from sprintf string.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 977e1b8020f..4dfaece68b2 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -4555,7 +4555,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\n",
+ sprintf (buf1, "X protocol error: %s on protocol request %d",
buf, error->request_code);
x_connection_closed (display, buf1);
}