aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-06-09 19:10:58 +0000
committerRichard M. Stallman1996-06-09 19:10:58 +0000
commitc1b1350b942100f42d3287fdebdecdadac7951a3 (patch)
tree07192b0c4692efa209e39924b834d43ee31f45d1
parentc0fbcada19a44b9464ee1713027b4c1514374ebb (diff)
downloademacs-c1b1350b942100f42d3287fdebdecdadac7951a3.tar.gz
emacs-c1b1350b942100f42d3287fdebdecdadac7951a3.zip
(make-frame-command): Treat msdos like no window system.
-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."
420(defun make-frame-command () 420(defun make-frame-command ()
421 "Make a new frame, and select it if the terminal displays only one frame." 421 "Make a new frame, and select it if the terminal displays only one frame."
422 (interactive) 422 (interactive)
423 (if window-system 423 (if (and window-system (not (eq window-system 'pc)))
424 (make-frame) 424 (make-frame)
425 (select-frame (make-frame)))) 425 (select-frame (make-frame))))
426 426