diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-01-01 23:43:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-01-01 23:43:19 +0000 |
commit | 8e6dade7d96ddb1cd68b9834ffba338c57795d1f (patch) | |
tree | f6f4cc7572867df444f54848be9a26d44be8a990 /lisp/paths.el | |
parent | edbf4d9743386b27d18734d8d47c1d349563dc8d (diff) | |
download | emacs-8e6dade7d96ddb1cd68b9834ffba338c57795d1f.tar.gz |
(abbrev-file-name): Use convert-standard-filename.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 7bdd8ca712b..12292e2bb1a 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -148,7 +148,7 @@ the terminal-initialization file to be loaded.") (defconst abbrev-file-name (if (eq system-type 'vax-vms) "~/abbrev.def" - "~/.abbrev_defs") + (convert-standard-filename "~/.abbrev_defs")) "*Default name of file to read abbrevs from.") ;;; paths.el ends here |