aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-01 19:09:14 +0000
committerRichard M. Stallman1996-09-01 19:09:14 +0000
commit7003b258300d0e575da8009e6f017b6c19aabacb (patch)
tree6eb6f9116c284f6675f5766a59c224e6a2a0c4ac
parentfc71550113a1089428163c57872e9922e9bc2a5d (diff)
downloademacs-7003b258300d0e575da8009e6f017b6c19aabacb.tar.gz
emacs-7003b258300d0e575da8009e6f017b6c19aabacb.zip
(vip-custom-file-name): Use convert-standard-filename.
-rw-r--r--lisp/emulation/viper.el9
1 files changed, 2 insertions, 7 deletions
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el
index 824e6823a82..d017e4c7c4f 100644
--- a/lisp/emulation/viper.el
+++ b/lisp/emulation/viper.el
@@ -821,13 +821,8 @@ These buffers can be cycled through via :R and :P commands.")
821(defvar vip-always t 821(defvar vip-always t
822 "t means, arrange that vi-state will be a default.") 822 "t means, arrange that vi-state will be a default.")
823 823
824(defvar vip-custom-file-name (cond (vip-vms-os-p "sys$login:.vip") 824(defvar vip-custom-file-name
825 ((memq system-type '(emx ms-dos)) 825 (convert-standard-filename "~/.vip")
826 "/_vip")
827 ((memq system-type '(windows-nt windows-95))
828 "~/_vip")
829 (t ; Unix
830 "~/.vip"))
831 "Viper customisation file. 826 "Viper customisation file.
832This variable must be set _before_ loading Viper.") 827This variable must be set _before_ loading Viper.")
833 828