aboutsummaryrefslogtreecommitdiff
path: root/emms-cache.el
diff options
context:
space:
mode:
authorWilliam Xu <william.xwl@gmail.com>2007-10-14 06:39:00 +0000
committerWilliam Xu <william.xwl@gmail.com>2007-10-14 06:39:00 +0000
commit36806a0dd6c44f5c20b86b8a3ea9bec422750057 (patch)
tree67d55b3b22ce76d8cca3d21cd2ea4a2c8783a56a /emms-cache.el
parenta6fe65ef66255a80dbefd60c10225abe281c1dbd (diff)
Replace `nnheader-concat' with `concat + file-name-as-directory' to make XEmacs happy.
darcs-hash:20071014063932-cfa61-62cac9e96ea91d9205a5932a063cff5f356ddb43.gz
Diffstat (limited to 'emms-cache.el')
-rw-r--r--emms-cache.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emms-cache.el b/emms-cache.el
index 6ec1751..9c6ae5f 100644
--- a/emms-cache.el
+++ b/emms-cache.el
@@ -56,7 +56,7 @@ This is used to cache over emacs sessions.")
(defvar emms-cache-dirty nil
"True if the cache has been updated since init.")
-(defcustom emms-cache-file (nnheader-concat emms-directory "cache")
+(defcustom emms-cache-file (concat (file-name-as-directory emms-directory) "cache")
"A file used to store cached file information over sessions."
:group 'emms
:type 'file)