diff options
author | Pierre Neidhardt <ambrevar@gmail.com> | 2018-02-17 21:19:35 +0100 |
---|---|---|
committer | Pierre Neidhardt <ambrevar@gmail.com> | 2018-02-17 21:19:35 +0100 |
commit | 0459003a1686b5742e660d08e7c936d1b06e8e7c (patch) | |
tree | 5c7fd714e91d8ffb484b0d1eb5698f5c1fd95fcc | |
parent | 3a8d16d91edae81ffb2bb9efa12d41712edfd4f8 (diff) |
Set emms-directory according to user-emacs-directory
-rw-r--r-- | lisp/emms.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emms.el b/lisp/emms.el index 0fc3a68..b101054 100644 --- a/lisp/emms.el +++ b/lisp/emms.el @@ -285,7 +285,7 @@ The modified track is passed as the argument to this function." :group 'emms :type 'function) -(defcustom emms-directory "~/.emacs.d/emms" +(defcustom emms-directory (expand-file-name "emms" user-emacs-directory) "*Directory variable from which all other emms file variables are derived." :group 'emms :type 'string) |