aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/viper-ex.el3
-rw-r--r--lisp/emulation/viper-init.el3
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el
index 783c01058e2..ecbcace2dd4 100644
--- a/lisp/emulation/viper-ex.el
+++ b/lisp/emulation/viper-ex.el
@@ -294,7 +294,8 @@
294 "\\|" 294 "\\|"
295 "bash$\\|bash.exe$" 295 "bash$\\|bash.exe$"
296 "\\)") 296 "\\)")
297 shell-file-name))) 297 shell-file-name)
298 t))
298 "Is the user using a unix-type shell under a non-OS?" 299 "Is the user using a unix-type shell under a non-OS?"
299 :type 'boolean) 300 :type 'boolean)
300 301
diff --git a/lisp/emulation/viper-init.el b/lisp/emulation/viper-init.el
index 986d1fe6bc6..c39e3cf5142 100644
--- a/lisp/emulation/viper-init.el
+++ b/lisp/emulation/viper-init.el
@@ -47,7 +47,8 @@
47(defun viper-window-display-p () 47(defun viper-window-display-p ()
48 (and window-system (not (memq window-system '(tty stream pc))))) 48 (and window-system (not (memq window-system '(tty stream pc)))))
49 49
50(defcustom viper-ms-style-os-p (memq system-type '(ms-dos windows-nt)) 50(defcustom viper-ms-style-os-p
51 (not (not (memq system-type '(ms-dos windows-nt))))
51 "Non-nil if Emacs is running under an MS-style OS: MS-DOS, or MS-Windows." 52 "Non-nil if Emacs is running under an MS-style OS: MS-DOS, or MS-Windows."
52 :type 'boolean 53 :type 'boolean
53 :tag "Is it Microsoft-made OS?" 54 :tag "Is it Microsoft-made OS?"