summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-26 17:45:28 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-26 17:45:28 +0000
commitbdff34901c07ee4398bb240fb8d81d0dd5293b6c (patch)
treeda9ab200554b835d167a59a64fbde3d4e4e19b50
parented63edb5d2cb822b02e28ab2e114678954cba445 (diff)
downloademacs-bdff34901c07ee4398bb240fb8d81d0dd5293b6c.tar.gz
(x_connection_closed): Add newline when printing error message on stderr.
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index d798f10fb1c..35fa4cf4241 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -4519,7 +4519,7 @@ x_connection_closed (display, error_message)
if (x_display_list == 0)
{
- fprintf (stderr, "%s", error_message);
+ fprintf (stderr, "%s\n", error_message);
shut_down_emacs (0, 0, Qnil);
exit (70);
}