diff options
author | Sean Allred <code@seanallred.com> | 2014-11-05 19:33:20 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-05 19:33:20 -0500 |
commit | 6f2fb104789fdcd7c7e10ca31f6517f0305579c1 (patch) | |
tree | f75a1d8015b61e958618fba8b5a4be2b0df92842 /stack-auth.el | |
parent | 713899dd0fdfec2e600eeab58986f9fefcbdb00b (diff) |
Use standard '.el' extenstion for cache
This should probably be altered so that the caching function requires
symbols; this would keep everything consistent since the caching
function could apply the same pattern to every symbol it receives.
Diffstat (limited to 'stack-auth.el')
-rw-r--r-- | stack-auth.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stack-auth.el b/stack-auth.el index d450754..99e0177 100644 --- a/stack-auth.el +++ b/stack-auth.el @@ -67,7 +67,7 @@ questions)." (if (string-equal "" stack-auth-access-token) (progn (setq stack-auth-access-token nil) (error "You must enter this code to use this client fully")) - (stack-cache-set "auth" `((access-token . ,stack-auth-access-token))))) + (stack-cache-set "auth.el" `((access-token . ,stack-auth-access-token))))) (provide 'stack-auth) ;;; stack-auth.el ends here |