(make-frame-command): Treat msdos like no window system.

This commit is contained in:
Richard M. Stallman 1996-06-09 19:10:58 +00:00
parent c0fbcada19
commit c1b1350b94

View 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))))