1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* emacsclient.c (main): Fix mindless breakage where emacsclient

does not work *at all* on Windows, even if it *can* connect.
This commit is contained in:
Juanma Barranquero 2008-12-10 22:18:21 +00:00
parent ecc69b6579
commit 5201664703
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2008-12-10 Juanma Barranquero <lekktu@gmail.com>
* emacsclient.c (main): Fix mindless breakage where emacsclient
does not work *at all* on Windows, even if it *can* connect.
2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
* emacsclient.c (EMACS_DAEMON): Remove definition.

View file

@ -1519,8 +1519,10 @@ main (argc, argv)
}
else
fail ();
#ifndef WINDOWSNT
else
fail ();
#endif
cwd = get_current_dir_name ();
if (cwd == 0)