aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris2008-01-09 04:36:57 +0000
committerGlenn Morris2008-01-09 04:36:57 +0000
commit355a326e54a2b1e3982a93f26ec0146fa0816774 (patch)
tree3ec5b9ad8022e60a9ea96286eeeab04057fd606e /lib-src
parentdcb8ac09ea4b4a500da0b9a72e230bd94f59bd3d (diff)
downloademacs-355a326e54a2b1e3982a93f26ec0146fa0816774.tar.gz
emacs-355a326e54a2b1e3982a93f26ec0146fa0816774.zip
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.c2
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 ()
1266 s = set_local_socket (); 1266 s = set_local_socket ();
1267 if ((s != INVALID_SOCKET) || alternate_editor) 1267 if ((s != INVALID_SOCKET) || alternate_editor)
1268 return s; 1268 return s;
1269 message (TRUE, "%s: error accessing socket \"%s\"", 1269 message (TRUE, "%s: error accessing socket \"%s\"\n",
1270 progname, socket_name); 1270 progname, socket_name);
1271 exit (EXIT_FAILURE); 1271 exit (EXIT_FAILURE);
1272 } 1272 }