]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix failure of 'emacs --daemon' on Cygwin
authorKen Brown <kbrown@cornell.edu>
Thu, 29 Oct 2020 12:45:29 +0000 (08:45 -0400)
committerKen Brown <kbrown@cornell.edu>
Thu, 29 Oct 2020 12:45:29 +0000 (08:45 -0400)
* src/emacs.c (DAEMON_MUST_EXEC): Define unconditionally on
Cygwin, not just if HAVE_NTGUI is defined.  This fixes the failure
of 'emacs --daemon' to start on the non-w32 Cygwin builds.
(Bug#44285)

src/emacs.c

index 11dcdb33fe02e5ce92de633586283cca61db2699..3836f179abc930258a72837ea64f67cc61e34fd5 100644 (file)
@@ -171,7 +171,7 @@ static uintmax_t heap_bss_diff;
    We mark being in the exec'd process by a daemon name argument of
    form "--daemon=\nFD0,FD1\nNAME" where FD are the pipe file descriptors,
    NAME is the original daemon name, if any. */
-#if defined NS_IMPL_COCOA || (defined HAVE_NTGUI && defined CYGWIN)
+#if defined NS_IMPL_COCOA || defined CYGWIN
 # define DAEMON_MUST_EXEC
 #endif