summaryrefslogtreecommitdiff
path: root/lisp/emulation
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-01 19:09:14 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-01 19:09:14 +0000
commit48673d6523703af31793cef46ea5a5e3a757deeb (patch)
tree7ff170f623678e5ae8825488b048d562d8f39cf3 /lisp/emulation
parenta01ccdc6c5d100bb5f12bd7fc022782efcf946d6 (diff)
downloademacs-48673d6523703af31793cef46ea5a5e3a757deeb.tar.gz
(vip-custom-file-name): Use convert-standard-filename.
Diffstat (limited to 'lisp/emulation')
-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.")
(defvar vip-always t
"t means, arrange that vi-state will be a default.")
-(defvar vip-custom-file-name (cond (vip-vms-os-p "sys$login:.vip")
- ((memq system-type '(emx ms-dos))
- "/_vip")
- ((memq system-type '(windows-nt windows-95))
- "~/_vip")
- (t ; Unix
- "~/.vip"))
+(defvar vip-custom-file-name
+ (convert-standard-filename "~/.vip")
"Viper customisation file.
This variable must be set _before_ loading Viper.")