diff options
author | Glenn Morris <rgm@gnu.org> | 2008-01-09 04:36:57 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-01-09 04:36:57 +0000 |
commit | 355a326e54a2b1e3982a93f26ec0146fa0816774 (patch) | |
tree | 3ec5b9ad8022e60a9ea96286eeeab04057fd606e /lib-src | |
parent | dcb8ac09ea4b4a500da0b9a72e230bd94f59bd3d (diff) | |
download | emacs-355a326e54a2b1e3982a93f26ec0146fa0816774.tar.gz |
Daniel Hackney <dan at haxney.org> (tiny change)
(set_socket): Add trailing newline to socket error message.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/emacsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 9de812d1c73..ddb4ad10a2c 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -1266,7 +1266,7 @@ set_socket () s = set_local_socket (); if ((s != INVALID_SOCKET) || alternate_editor) return s; - message (TRUE, "%s: error accessing socket \"%s\"", + message (TRUE, "%s: error accessing socket \"%s\"\n", progname, socket_name); exit (EXIT_FAILURE); } |