branch: externals/transient commit 6d721f7490091ee3e285613fa8df438bca2da6db Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Don't use convert-standard-filename when defining path variables `locate-user-emacs-file' already takes care of that using `convert-standard-filename', which should only be used on absolute file names (which the manual fails to mention). --- lisp/transient.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/transient.el b/lisp/transient.el index 839f820b57..10d0bc8d00 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -402,21 +402,21 @@ give you as many additional suffixes as you hoped.)" (const :tag "7 - most suffixes" 7))) (defcustom transient-levels-file - (locate-user-emacs-file (convert-standard-filename "transient/levels.el")) + (locate-user-emacs-file "transient/levels.el") "File used to save levels of transients and their suffixes." :package-version '(transient . "0.1.0") :group 'transient :type 'file) (defcustom transient-values-file - (locate-user-emacs-file (convert-standard-filename "transient/values.el")) + (locate-user-emacs-file "transient/values.el") "File used to save values of transients." :package-version '(transient . "0.1.0") :group 'transient :type 'file) (defcustom transient-history-file - (locate-user-emacs-file (convert-standard-filename "transient/history.el")) + (locate-user-emacs-file "transient/history.el") "File used to save history of transients and their infixes." :package-version '(transient . "0.1.0") :group 'transient