]> git.eshelyaron.com Git - emacs.git/commitdiff
(make-frame-command): Treat msdos like no window system.
authorRichard M. Stallman <rms@gnu.org>
Sun, 9 Jun 1996 19:10:58 +0000 (19:10 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 9 Jun 1996 19:10:58 +0000 (19:10 +0000)
lisp/frame.el

index a5e0c816053cdb5a6098adf8d49fa9ba42e20cc4..e52bfba99b5d61d62c3f9ab62eec242e260e4f66 100644 (file)
@@ -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))))