diff options
Diffstat (limited to 'sx-cache.el')
-rw-r--r-- | sx-cache.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sx-cache.el b/sx-cache.el index 07352d0..b9f65ba 100644 --- a/sx-cache.el +++ b/sx-cache.el @@ -1,4 +1,4 @@ -;;; sx-cache.el --- caching for stack-mode +;;; sx-cache.el --- caching ;; Copyright (C) 2014 Sean Allred @@ -29,7 +29,7 @@ ;;; Code: (defcustom sx-cache-directory - (expand-file-name ".stackmode" user-emacs-directory) + (expand-file-name ".sx" user-emacs-directory) "Directory containing cached data." :type 'directory :group 'sx-cache) @@ -99,7 +99,7 @@ as delete the list of hidden questions." (when save-auth (setq caches (cl-remove-if (lambda (x) (string= x "auth.el")) caches))) - (lwarn 'stack-mode :debug "Invalidating: %S" caches) + (lwarn 'sx :debug "Invalidating: %S" caches) (mapc #'delete-file caches) (sx-initialize 'force))) |