diff options
| author | Glenn Morris | 2008-01-09 04:40:14 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-01-09 04:40:14 +0000 |
| commit | 78da39c6e7c532cc847367187c3c87ad92b25ef7 (patch) | |
| tree | 35381df723fa4a2f0c9541f6b506d1623a728617 /lib-src | |
| parent | 355a326e54a2b1e3982a93f26ec0146fa0816774 (diff) | |
| download | emacs-78da39c6e7c532cc847367187c3c87ad92b25ef7.tar.gz emacs-78da39c6e7c532cc847367187c3c87ad92b25ef7.zip | |
Add missing final newlines to message calls.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 8 | ||||
| -rw-r--r-- | lib-src/emacsclient.c | 12 |
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 @@ | |||
| 1 | 2008-01-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacsclient.c: Add missing final newlines to message calls. | ||
| 4 | |||
| 5 | 2008-01-09 Daniel Hackney <dan@haxney.org> (tiny change) | ||
| 6 | |||
| 7 | * emacsclient.c (set_socket): Add final newline to socket error message. | ||
| 8 | |||
| 1 | 2008-01-04 Glenn Morris <rgm@gnu.org> | 9 | 2008-01-04 Glenn Morris <rgm@gnu.org> |
| 2 | 10 | ||
| 3 | * ebrowse.c (version) <emacs_copyright>: New variable. | 11 | * 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 () | |||
| 882 | 882 | ||
| 883 | if (WSAStartup (MAKEWORD (2, 0), &wsaData)) | 883 | if (WSAStartup (MAKEWORD (2, 0), &wsaData)) |
| 884 | { | 884 | { |
| 885 | message (TRUE, "%s: error initializing WinSock2", progname); | 885 | message (TRUE, "%s: error initializing WinSock2\n", progname); |
| 886 | exit (EXIT_FAILURE); | 886 | exit (EXIT_FAILURE); |
| 887 | } | 887 | } |
| 888 | 888 | ||
| @@ -939,7 +939,7 @@ get_server_config (server, authentication) | |||
| 939 | } | 939 | } |
| 940 | else | 940 | else |
| 941 | { | 941 | { |
| 942 | message (TRUE, "%s: invalid configuration info", progname); | 942 | message (TRUE, "%s: invalid configuration info\n", progname); |
| 943 | exit (EXIT_FAILURE); | 943 | exit (EXIT_FAILURE); |
| 944 | } | 944 | } |
| 945 | 945 | ||
| @@ -949,7 +949,7 @@ get_server_config (server, authentication) | |||
| 949 | 949 | ||
| 950 | if (! fread (authentication, AUTH_KEY_LENGTH, 1, config)) | 950 | if (! fread (authentication, AUTH_KEY_LENGTH, 1, config)) |
| 951 | { | 951 | { |
| 952 | message (TRUE, "%s: cannot read authentication info", progname); | 952 | message (TRUE, "%s: cannot read authentication info\n", progname); |
| 953 | exit (EXIT_FAILURE); | 953 | exit (EXIT_FAILURE); |
| 954 | } | 954 | } |
| 955 | 955 | ||
| @@ -1167,7 +1167,7 @@ set_local_socket () | |||
| 1167 | strcpy (server.sun_path, socket_name); | 1167 | strcpy (server.sun_path, socket_name); |
| 1168 | else | 1168 | else |
| 1169 | { | 1169 | { |
| 1170 | message (TRUE, "%s: socket-name %s too long", | 1170 | message (TRUE, "%s: socket-name %s too long\n", |
| 1171 | progname, socket_name); | 1171 | progname, socket_name); |
| 1172 | fail (); | 1172 | fail (); |
| 1173 | } | 1173 | } |
| @@ -1202,7 +1202,7 @@ set_local_socket () | |||
| 1202 | strcpy (server.sun_path, socket_name); | 1202 | strcpy (server.sun_path, socket_name); |
| 1203 | else | 1203 | else |
| 1204 | { | 1204 | { |
| 1205 | message (TRUE, "%s: socket-name %s too long", | 1205 | message (TRUE, "%s: socket-name %s too long\n", |
| 1206 | progname, socket_name); | 1206 | progname, socket_name); |
| 1207 | exit (EXIT_FAILURE); | 1207 | exit (EXIT_FAILURE); |
| 1208 | } | 1208 | } |
| @@ -1282,7 +1282,7 @@ set_socket () | |||
| 1282 | if ((s != INVALID_SOCKET) || alternate_editor) | 1282 | if ((s != INVALID_SOCKET) || alternate_editor) |
| 1283 | return s; | 1283 | return s; |
| 1284 | 1284 | ||
| 1285 | message (TRUE, "%s: error accessing server file \"%s\"", | 1285 | message (TRUE, "%s: error accessing server file \"%s\"\n", |
| 1286 | progname, server_file); | 1286 | progname, server_file); |
| 1287 | exit (EXIT_FAILURE); | 1287 | exit (EXIT_FAILURE); |
| 1288 | } | 1288 | } |