* emacsclient.c (main): Avoid dangling 'if'.

This commit is contained in:
Paul Eggert 2011-02-25 15:39:18 -08:00
parent b0bbc07d9a
commit 7e6bb4c94c
2 changed files with 16 additions and 14 deletions

View file

@ -1,5 +1,7 @@
2011-02-25 Paul Eggert <eggert@cs.ucla.edu> 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
* emacsclient.c (main): Avoid dangling 'if'.
* emacsclient.c: Redo local variables to avoid shadowing problems. * emacsclient.c: Redo local variables to avoid shadowing problems.
(message, socket_status, start_daemon_and_retry_set_socket): (message, socket_status, start_daemon_and_retry_set_socket):
Rename locals. Rename locals.

View file

@ -1543,21 +1543,21 @@ main (int argc, char **argv)
null_server_file = (server_file == NULL); null_server_file = (server_file == NULL);
} }
if ((emacs_socket = set_socket (alternate_editor emacs_socket = set_socket (alternate_editor || start_daemon_if_needed);
|| start_daemon_if_needed)) == INVALID_SOCKET) if (emacs_socket == INVALID_SOCKET)
if (start_daemon_if_needed) {
{ if (! start_daemon_if_needed)
/* Reset socket_name and server_file if they were NULL fail ();
before the set_socket call. */
if (null_socket_name)
socket_name = NULL;
if (null_server_file)
server_file = NULL;
start_daemon_and_retry_set_socket (); /* Reset socket_name and server_file if they were NULL
} before the set_socket call. */
else if (null_socket_name)
fail (); socket_name = NULL;
if (null_server_file)
server_file = NULL;
start_daemon_and_retry_set_socket ();
}
cwd = get_current_dir_name (); cwd = get_current_dir_name ();
if (cwd == 0) if (cwd == 0)