diff lib-src/emacsclient.c @ 83607:b009fb9581ca

* emacsclient.c (decode_options): Don't use a tty on windows. * makefile.w32-in (VERSION): Update.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 16 May 2007 23:16:53 +0000
parents 54df157e987d
children a5651b79b31b
line wrap: on
line diff
--- a/lib-src/emacsclient.c	Wed May 16 22:49:30 2007 +0000
+++ b/lib-src/emacsclient.c	Wed May 16 23:16:53 2007 +0000
@@ -458,9 +458,11 @@
 
   if (!tty && display)
     window_system = 1;
+#ifndef WINDOWSNT
   else
     tty = 1;
-
+#endif
+  
   /* --no-wait implies --current-frame on ttys when there are file
        arguments or expressions given.  */
   if (nowait && tty && argc - optind > 0)