diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-11-09 07:51:18 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-11-09 07:51:27 +0100 |
commit | 104e90d93664892ed1a7a1631c5b0141d0552a60 (patch) | |
tree | b4188b053b2a8c63328429bb766947214f4112f2 /lisp/net/tramp-crypt.el | |
parent | c9fd83e3034ddd1e2d1a8eeafc7f12d6e3df5249 (diff) | |
download | emacs-104e90d93664892ed1a7a1631c5b0141d0552a60.tar.gz emacs-104e90d93664892ed1a7a1631c5b0141d0552a60.tar.bz2 emacs-104e90d93664892ed1a7a1631c5b0141d0552a60.zip |
Prefer locate-user-emacs-file
* lisp/cmuscheme.el (scheme-start-file):
* lisp/erc/erc.el (erc-startup-file-list):
* lisp/net/nsm.el (nsm-settings-file):
* lisp/net/tramp-crypt.el (tramp-crypt-config-file-name):
* lisp/org/org-clock.el (org-clock-persist-file):
* lisp/org/org-id.el (org-id-locations-file)
* lisp/shell.el (shell): Prefer 'locate-user-emacs-file' to fiddling
with 'user-emacs-directory' directly.
Diffstat (limited to 'lisp/net/tramp-crypt.el')
-rw-r--r-- | lisp/net/tramp-crypt.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/net/tramp-crypt.el b/lisp/net/tramp-crypt.el index 5def3a4137c..269560bfa94 100644 --- a/lisp/net/tramp-crypt.el +++ b/lisp/net/tramp-crypt.el @@ -293,9 +293,8 @@ arguments to pass to the OPERATION." (defun tramp-crypt-config-file-name (vec) "Return the encfs config file name for VEC." - (expand-file-name - (concat "tramp-" (tramp-file-name-host vec) tramp-crypt-encfs-config) - user-emacs-directory)) + (locate-user-emacs-file + (concat "tramp-" (tramp-file-name-host vec) tramp-crypt-encfs-config))) (defun tramp-crypt-maybe-open-connection (vec) "Maybe open a connection VEC. |