Mercurial > emacs
changeset 16329:08514f491f33
(vip-window-display-p): Don't treat MS-DOS as a windowed display.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 25 Sep 1996 07:45:15 +0000 |
parents | 5aff0b539ae0 |
children | e4d9d77012bc |
files | lisp/emulation/viper-util.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emulation/viper-util.el Wed Sep 25 07:20:19 1996 +0000 +++ b/lisp/emulation/viper-util.el Wed Sep 25 07:45:15 1996 +0000 @@ -55,7 +55,7 @@ (device-type (selected-device)))) ;; in XEmacs: device-type is tty on tty and stream in batch. (defun vip-window-display-p () - (and (vip-device-type) (not (memq (vip-device-type) '(tty stream))))) + (and (vip-device-type) (not (memq (vip-device-type) '(tty stream pc))))) (defvar vip-ms-style-os-p (memq system-type '(ms-dos windows-nt windows-95)) "Tells if Emacs is running under an MS-style OS: ms-dos, windows-nt, W95.")