emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112041: * emacs.c (main): Call syms_


From: Daniel Colascione
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112041: * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
Date: Wed, 13 Mar 2013 11:28:50 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112041
committer: Daniel Colascione <address@hidden>
branch nick: trunk
timestamp: Wed 2013-03-13 11:28:50 -0800
message:
  * 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.)
modified:
  src/ChangeLog
  src/emacs.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-03-13 18:42:22 +0000
+++ b/src/ChangeLog     2013-03-13 19:28:50 +0000
@@ -1,3 +1,10 @@
+2013-03-13  Daniel Colascione  <address@hidden>
+
+       * 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  <address@hidden>
 
        File synchronization fixes (Bug#13944).

=== modified file 'src/emacs.c'
--- a/src/emacs.c       2013-02-25 05:55:37 +0000
+++ b/src/emacs.c       2013-03-13 19:28:50 +0000
@@ -44,7 +44,7 @@
 #include "w32common.h"
 #endif
 
-#if defined HAVE_NTGUI && defined CYGWIN
+#if defined CYGWIN
 #include "cygw32.h"
 #endif
 
@@ -1348,7 +1348,7 @@
 #ifdef WINDOWSNT
       syms_of_ntproc ();
 #endif /* WINDOWSNT */
-#if defined CYGWIN && defined HAVE_NTGUI
+#if defined CYGWIN
       syms_of_cygw32 ();
 #endif
       syms_of_window ();


reply via email to

[Prev in Thread] Current Thread [Next in Thread]