Mercurial > emacs
changeset 15521:2b61a33a4576
(x_error_quitter): Delete newline from sprintf string.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 27 Jun 1996 00:25:07 +0000 |
parents | 4b152daa5b1d |
children | a6af1f88eec8 |
files | src/xterm.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xterm.c Wed Jun 26 21:48:45 1996 +0000 +++ b/src/xterm.c Thu Jun 27 00:25:07 1996 +0000 @@ -4555,7 +4555,7 @@ 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); }