]> git.eshelyaron.com Git - emacs.git/commitdiff
(vip-window-display-p): Don't treat MS-DOS as a windowed display.
authorRichard M. Stallman <rms@gnu.org>
Wed, 25 Sep 1996 07:45:15 +0000 (07:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 25 Sep 1996 07:45:15 +0000 (07:45 +0000)
lisp/emulation/viper-util.el

index 09e2787ccad3a9e82f520baac519689284092899..70daa478bae3fb17901a1e6a4de33db8f3e9761c 100644 (file)
@@ -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.")