diff options
| author | Richard M. Stallman | 1996-06-27 00:25:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-27 00:25:07 +0000 |
| commit | 0a0fdc709914129eefab9bba0541a74435cf0466 (patch) | |
| tree | 3cf646b50a770a6083a44959ca0f8a670d262b29 /src | |
| parent | dbf0d3f8cabf1ff983dba64e640933a50b71a1db (diff) | |
| download | emacs-0a0fdc709914129eefab9bba0541a74435cf0466.tar.gz emacs-0a0fdc709914129eefab9bba0541a74435cf0466.zip | |
(x_error_quitter): Delete newline from sprintf string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
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) | |||
| 4555 | original error handler. */ | 4555 | original error handler. */ |
| 4556 | 4556 | ||
| 4557 | XGetErrorText (display, error->error_code, buf, sizeof (buf)); | 4557 | XGetErrorText (display, error->error_code, buf, sizeof (buf)); |
| 4558 | sprintf (buf1, "X protocol error: %s on protocol request %d\n", | 4558 | sprintf (buf1, "X protocol error: %s on protocol request %d", |
| 4559 | buf, error->request_code); | 4559 | buf, error->request_code); |
| 4560 | x_connection_closed (display, buf1); | 4560 | x_connection_closed (display, buf1); |
| 4561 | } | 4561 | } |