aboutsummaryrefslogtreecommitdiff
path: root/sx-auth.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-11-08 14:12:42 -0500
committerSean Allred <code@seanallred.com>2014-11-08 14:12:42 -0500
commit7ed29c4dc940a871562aaa802ac53ddee4c66a27 (patch)
tree4656459efc90a16ad70a5f857630066a85805e11 /sx-auth.el
parentb6043f63e5b3437633a53bcc191214bb8a7f936b (diff)
Re-work filtering and caching
* sx-auth.el - Use new symbolic cache access * sx-cache.el - Implement symbolic cache access * sx-filter.el - Use symbolic cache access - Compile and save filters on-demand (more work to be done to this end) * sx-question.el - Symbolic filters * sx-request.el - Protection against infinitely recursing when compiling a filter This will be re-worked into requests (a front-end function) and 'raw' requests (a back-end function). The front-end will add convenience to the back-end. * test/tests.el Remove outdated tests
Diffstat (limited to 'sx-auth.el')
-rw-r--r--sx-auth.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-auth.el b/sx-auth.el
index b23b448..049827d 100644
--- a/sx-auth.el
+++ b/sx-auth.el
@@ -65,7 +65,7 @@ questions)."
(if (string-equal "" sx-auth-access-token)
(progn (setq sx-auth-access-token nil)
(error "You must enter this code to use this client fully"))
- (sx-cache-set "auth.el" `((access-token . ,sx-auth-access-token)))))
+ (sx-cache-set 'auth `((access-token . ,sx-auth-access-token)))))
(provide 'sx-auth)
;;; sx-auth.el ends here