Mercurial > emacs
changeset 15364:a4e1db62f693
(make-frame-command): Treat msdos like no window system.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 09 Jun 1996 19:10:58 +0000 |
parents | d401fcd58f8c |
children | 104a97493dcc |
files | lisp/frame.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/frame.el Sun Jun 09 13:42:55 1996 +0000 +++ b/lisp/frame.el Sun Jun 09 19:10:58 1996 +0000 @@ -420,7 +420,7 @@ (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))))