* 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.)
This commit is contained in:
Daniel Colascione 2013-03-13 11:28:50 -08:00
parent 1c4a85eda0
commit 3fc5e44aaa
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2013-03-13 Daniel Colascione <dancol@dancol.org>
* 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 <eggert@cs.ucla.edu>
File synchronization fixes (Bug#13944).

View file

@ -44,7 +44,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#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 ();