From: Richard M. Stallman Date: Mon, 12 Feb 1996 20:48:35 +0000 (+0000) Subject: (x_error_quitter): Add newline to error message. X-Git-Tag: emacs-19.34~1303 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c889e0d82380a471d7779f6d726d01bd74b1a8f9;p=emacs.git (x_error_quitter): Add newline to error message. --- 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) 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); }