1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-09 15:50:40 -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

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