From: Daniel Colascione Date: Wed, 13 Mar 2013 19:28:50 +0000 (-0800) Subject: * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~568^2~9 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3fc5e44aaaac666b7f6a77b2e2fcc0c6646659d5;p=emacs.git * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds too so that these builds can use Cygwin's file conversion functions. (We've been building and linking cygw32.o all along and just not using it.) --- diff --git a/src/ChangeLog b/src/ChangeLog index d328d0a74ca..8f379e25b49 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2013-03-13 Daniel Colascione + + * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds + too so that these builds can use Cygwin's file conversion + functions. (We've been building and linking cygw32.o all along + and just not using it.) + 2013-03-13 Paul Eggert File synchronization fixes (Bug#13944). diff --git a/src/emacs.c b/src/emacs.c index b96076b1340..bd33583af0c 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -44,7 +44,7 @@ along with GNU Emacs. If not, see . */ #include "w32common.h" #endif -#if defined HAVE_NTGUI && defined CYGWIN +#if defined CYGWIN #include "cygw32.h" #endif @@ -1348,7 +1348,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem #ifdef WINDOWSNT syms_of_ntproc (); #endif /* WINDOWSNT */ -#if defined CYGWIN && defined HAVE_NTGUI +#if defined CYGWIN syms_of_cygw32 (); #endif syms_of_window ();