summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-01-09 04:40:14 +0000
committerGlenn Morris <rgm@gnu.org>2008-01-09 04:40:14 +0000
commit78da39c6e7c532cc847367187c3c87ad92b25ef7 (patch)
tree35381df723fa4a2f0c9541f6b506d1623a728617 /lib-src
parent355a326e54a2b1e3982a93f26ec0146fa0816774 (diff)
downloademacs-78da39c6e7c532cc847367187c3c87ad92b25ef7.tar.gz
Add missing final newlines to message calls.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog8
-rw-r--r--lib-src/emacsclient.c12
2 files changed, 14 insertions, 6 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 8cdce18bd87..16cca0959b3 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,11 @@
+2008-01-09 Glenn Morris <rgm@gnu.org>
+
+ * emacsclient.c: Add missing final newlines to message calls.
+
+2008-01-09 Daniel Hackney <dan@haxney.org> (tiny change)
+
+ * emacsclient.c (set_socket): Add final newline to socket error message.
+
2008-01-04 Glenn Morris <rgm@gnu.org>
* ebrowse.c (version) <emacs_copyright>: New variable.
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index ddb4ad10a2c..4fcd3398bd2 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -882,7 +882,7 @@ initialize_sockets ()
if (WSAStartup (MAKEWORD (2, 0), &wsaData))
{
- message (TRUE, "%s: error initializing WinSock2", progname);
+ message (TRUE, "%s: error initializing WinSock2\n", progname);
exit (EXIT_FAILURE);
}
@@ -939,7 +939,7 @@ get_server_config (server, authentication)
}
else
{
- message (TRUE, "%s: invalid configuration info", progname);
+ message (TRUE, "%s: invalid configuration info\n", progname);
exit (EXIT_FAILURE);
}
@@ -949,7 +949,7 @@ get_server_config (server, authentication)
if (! fread (authentication, AUTH_KEY_LENGTH, 1, config))
{
- message (TRUE, "%s: cannot read authentication info", progname);
+ message (TRUE, "%s: cannot read authentication info\n", progname);
exit (EXIT_FAILURE);
}
@@ -1167,7 +1167,7 @@ set_local_socket ()
strcpy (server.sun_path, socket_name);
else
{
- message (TRUE, "%s: socket-name %s too long",
+ message (TRUE, "%s: socket-name %s too long\n",
progname, socket_name);
fail ();
}
@@ -1202,7 +1202,7 @@ set_local_socket ()
strcpy (server.sun_path, socket_name);
else
{
- message (TRUE, "%s: socket-name %s too long",
+ message (TRUE, "%s: socket-name %s too long\n",
progname, socket_name);
exit (EXIT_FAILURE);
}
@@ -1282,7 +1282,7 @@ set_socket ()
if ((s != INVALID_SOCKET) || alternate_editor)
return s;
- message (TRUE, "%s: error accessing server file \"%s\"",
+ message (TRUE, "%s: error accessing server file \"%s\"\n",
progname, server_file);
exit (EXIT_FAILURE);
}