Windows.
Fixes: debbugs:5486
+2011-07-02 Jason Rumney <jasonr@gnu.org>
+
+ * emacsclient.c (decode_options) [WINDOWSNT]: Avoid tty mode on
+ Windows (Bug#5486).
+
2011-06-25 Glenn Morris <rgm@gnu.org>
* emacsclient.c (decode_options) <opt>: Add `F:'.
an empty string");
exit (EXIT_FAILURE);
}
+
+ /* TTY frames not supported on Windows. Continue using GUI rather than
+ forcing the user to change their command-line. This is required since
+ tty is set above if certain options are given and $DISPLAY is not set,
+ which is not obvious to users. */
+ if (tty)
+ tty = 0;
+
#endif /* WINDOWSNT */
}