aboutsummaryrefslogtreecommitdiff
path: root/sx-cache.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-11-29 09:36:59 -0500
committerSean Allred <code@seanallred.com>2014-11-29 09:36:59 -0500
commitf5ca9c6d7629817569c3bd58e5569fee88cd5f2b (patch)
treebcbbdcb2e2fdc91f9431d3b3ad605aa0a7fa0bde /sx-cache.el
parenta8e882d99a037075595260dc74fad0fb67c69d81 (diff)
parent00a187f5bb7dc08117965eae05df51d0eedac90e (diff)
Merge branch 'master' into issue-100
Conflicts: sx-question-mode.el
Diffstat (limited to 'sx-cache.el')
-rw-r--r--sx-cache.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/sx-cache.el b/sx-cache.el
index 07352d0..51c2267 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,10 +29,10 @@
;;; 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)
+ :group 'sx)
(defun sx-cache--ensure-sx-cache-directory-exists ()
"Ensure `sx-cache-directory' exists."
@@ -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)))