aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-09-25 07:45:15 +0000
committerRichard M. Stallman <[email protected]>1996-09-25 07:45:15 +0000
commit8028cf8aadcc3be3d2cbe7b88a026d09b9e50033 (patch)
tree4a0fbe16843bf7fe3b331d3ec143b81020e9c6a2 /lisp
parentb53ce41df657a9dce8f7740deefdc00bcd261e84 (diff)
(vip-window-display-p): Don't treat MS-DOS as a windowed display.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emulation/viper-util.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper-util.el b/lisp/emulation/viper-util.el
index 09e2787cca..70daa478ba 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.")