diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2021-11-09 20:24:03 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2021-11-09 20:24:03 +0100 |
commit | b9b27b6e55bc17394711711450793dc12a56f9ab (patch) | |
tree | cff34fc3c729382bbe73fef90266244825742d2c /lisp/net/tramp-cache.el | |
parent | cef31747b602c423842caa50cbfee9ca804289a3 (diff) | |
download | emacs-b9b27b6e55bc17394711711450793dc12a56f9ab.tar.gz emacs-b9b27b6e55bc17394711711450793dc12a56f9ab.tar.bz2 emacs-b9b27b6e55bc17394711711450793dc12a56f9ab.zip |
* lisp/net/tramp-cache.el (tramp-persistency-file-name):
Skip superfluous `expand-file-name'.
Diffstat (limited to 'lisp/net/tramp-cache.el')
-rw-r--r-- | lisp/net/tramp-cache.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/net/tramp-cache.el b/lisp/net/tramp-cache.el index f1c656ec209..5e7d24ff72b 100644 --- a/lisp/net/tramp-cache.el +++ b/lisp/net/tramp-cache.el @@ -101,8 +101,7 @@ details see the info pages." (choice :tag " Value" sexp)))) ;;;###tramp-autoload -(defcustom tramp-persistency-file-name - (expand-file-name (locate-user-emacs-file "tramp")) +(defcustom tramp-persistency-file-name (locate-user-emacs-file "tramp") "File which keeps connection history for Tramp connections." :group 'tramp :type 'file) |