From 8028cf8aadcc3be3d2cbe7b88a026d09b9e50033 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 25 Sep 1996 07:45:15 +0000 Subject: [PATCH] (vip-window-display-p): Don't treat MS-DOS as a windowed display. --- lisp/emulation/viper-util.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emulation/viper-util.el b/lisp/emulation/viper-util.el index 09e2787ccad..70daa478bae 100644 --- a/lisp/emulation/viper-util.el +++ b/lisp/emulation/viper-util.el @@ -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.") -- 2.39.2