From: Richard M. Stallman Date: Sun, 9 Jun 1996 19:10:58 +0000 (+0000) Subject: (make-frame-command): Treat msdos like no window system. X-Git-Tag: emacs-19.34~498 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c1b1350b942100f42d3287fdebdecdadac7951a3;p=emacs.git (make-frame-command): Treat msdos like no window system. --- 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))))