comparison src/xterm.c @ 14557:64e5e68aef13

(x_error_quitter): Add newline to error message.
author Richard M. Stallman <rms@gnu.org>
date Mon, 12 Feb 1996 20:48:35 +0000
parents 9cee3e7c6468
children e93656946a8c
comparison
equal deleted inserted replaced
14556:e5c95b865af5 14557:64e5e68aef13
4583 4583
4584 /* Note that there is no real way portable across R3/R4 to get the 4584 /* Note that there is no real way portable across R3/R4 to get the
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 }
4592 4592
4593 /* This is the handler for X IO errors, always. 4593 /* This is the handler for X IO errors, always.