aboutsummaryrefslogtreecommitdiff
path: root/sx-cache.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-11-27 12:11:30 -0500
committerSean Allred <code@seanallred.com>2014-11-27 12:11:30 -0500
commit89a260220c60877c0766cbe79043ecb4dd1fa5f4 (patch)
tree92b644cad6c60f0fdcb37c305732d15f7e6d3ea6 /sx-cache.el
parent1e730aa1b56f5343629225f60ec9c04f4dc4b703 (diff)
Fix #110
Diffstat (limited to 'sx-cache.el')
-rw-r--r--sx-cache.el6
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)))