summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-09 19:10:58 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-09 19:10:58 +0000
commit22ff1cc99d16fdfd72bf2a9bd331825f9b5945c2 (patch)
tree21b185a000f78a5057ed1b01bb4eea09ec04411c /lisp
parentd1e2f4e47b96f7bd9ab19e5ac6dfe415c1edbed4 (diff)
downloademacs-22ff1cc99d16fdfd72bf2a9bd331825f9b5945c2.tar.gz
(make-frame-command): Treat msdos like no window system.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/frame.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index a5e0c816053..e52bfba99b5 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -420,7 +420,7 @@ The optional second argument PARAMETERS specifies additional frame parameters."
(defun make-frame-command ()
"Make a new frame, and select it if the terminal displays only one frame."
(interactive)
- (if window-system
+ (if (and window-system (not (eq window-system 'pc)))
(make-frame)
(select-frame (make-frame))))