diff options
| author | Daniel Colascione | 2013-03-13 11:28:50 -0800 |
|---|---|---|
| committer | Daniel Colascione | 2013-03-13 11:28:50 -0800 |
| commit | 3fc5e44aaaac666b7f6a77b2e2fcc0c6646659d5 (patch) | |
| tree | 61b8e2d873d3d20d30fa2659304b3ec05e520841 | |
| parent | 1c4a85eda018224ac258d8b55cad5093015f1f77 (diff) | |
| download | emacs-3fc5e44aaaac666b7f6a77b2e2fcc0c6646659d5.tar.gz emacs-3fc5e44aaaac666b7f6a77b2e2fcc0c6646659d5.zip | |
* 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.)
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/emacs.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d328d0a74ca..8f379e25b49 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2013-03-13 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds | ||
| 4 | too so that these builds can use Cygwin's file conversion | ||
| 5 | functions. (We've been building and linking cygw32.o all along | ||
| 6 | and just not using it.) | ||
| 7 | |||
| 1 | 2013-03-13 Paul Eggert <eggert@cs.ucla.edu> | 8 | 2013-03-13 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 9 | ||
| 3 | File synchronization fixes (Bug#13944). | 10 | 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 <http://www.gnu.org/licenses/>. */ | |||
| 44 | #include "w32common.h" | 44 | #include "w32common.h" |
| 45 | #endif | 45 | #endif |
| 46 | 46 | ||
| 47 | #if defined HAVE_NTGUI && defined CYGWIN | 47 | #if defined CYGWIN |
| 48 | #include "cygw32.h" | 48 | #include "cygw32.h" |
| 49 | #endif | 49 | #endif |
| 50 | 50 | ||
| @@ -1348,7 +1348,7 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem | |||
| 1348 | #ifdef WINDOWSNT | 1348 | #ifdef WINDOWSNT |
| 1349 | syms_of_ntproc (); | 1349 | syms_of_ntproc (); |
| 1350 | #endif /* WINDOWSNT */ | 1350 | #endif /* WINDOWSNT */ |
| 1351 | #if defined CYGWIN && defined HAVE_NTGUI | 1351 | #if defined CYGWIN |
| 1352 | syms_of_cygw32 (); | 1352 | syms_of_cygw32 (); |
| 1353 | #endif | 1353 | #endif |
| 1354 | syms_of_window (); | 1354 | syms_of_window (); |