}
\f
-#if !defined (HAVE_SOCKETS) || !defined (HAVE_INET_SOCKETS)
-
-int
-main (int argc, char **argv)
-{
- main_argc = argc;
- main_argv = argv;
- progname = argv[0];
- message (true, ("%s: Sorry, the Emacs server is supported only\n"
- "on systems with Berkeley sockets.\n"),
- argv[0]);
- fail ();
-}
-
-#else /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
+#if defined HAVE_SOCKETS && defined HAVE_INET_SOCKETS
enum { AUTH_KEY_LENGTH = 64 };
d_argv[0] = emacs;
d_argv[1] = daemon_option;
d_argv[2] = 0;
-#ifndef NO_SOCKETS_IN_FILE_SYSTEM
+# ifndef NO_SOCKETS_IN_FILE_SYSTEM
if (socket_name != NULL)
{
/* Pass --daemon=socket_name as argument. */
strcpy (stpcpy (daemon_arg, deq), socket_name);
d_argv[1] = daemon_arg;
}
-#endif
+# endif
execvp ("emacs", d_argv);
message (true, "%s: error starting emacs daemon\n", progname);
}
}
# endif /* WINDOWSNT */
}
+#endif /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
int
main (int argc, char **argv)
{
+ main_argc = argc;
+ main_argv = argv;
+ progname = argv[0] ? argv[0] : "emacsclient";
+
+#if ! (defined HAVE_SOCKETS && defined HAVE_INET_SOCKETS)
+ message (true, "%s: Sorry, support for Berkeley sockets is required.\n",
+ progname);
+ fail ();
+#else /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
int rl = 0;
bool skiplf = true;
- char string[BUFSIZ+1];
+ char string[BUFSIZ + 1];
int exit_status = EXIT_SUCCESS;
- main_argc = argc;
- main_argv = argv;
- progname = argv[0];
-
-#ifdef HAVE_NTGUI
+# ifdef HAVE_NTGUI
/* On Windows 7 and later, we need to explicitly associate
emacsclient with emacs so the UI behaves sensibly. This
association does no harm if we're not actually connecting to an
Emacs using a window display. */
w32_set_user_model_id ();
-#endif /* HAVE_NTGUI */
+# endif /* HAVE_NTGUI */
/* Process options. */
decode_options (argc, argv);
exit (EXIT_FAILURE);
}
-#ifndef WINDOWSNT
+# ifndef WINDOWSNT
if (tty)
{
pid_t pgrp = getpgrp ();
if (0 <= tcpgrp && tcpgrp != pgrp)
kill (-pgrp, SIGTTIN);
}
-#endif /* !WINDOWSNT */
+# endif /* !WINDOWSNT */
/* If alternate_editor is the empty string, start the emacs daemon
in case of failure to connect. */
CLOSE_SOCKET (emacs_socket);
return exit_status;
-}
-
#endif /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
+}