diff options
author | Sean Allred <code@seanallred.com> | 2014-11-02 10:25:21 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-02 10:25:21 -0500 |
commit | e91752e2d2b6c631fd774823a10868c5d7e40d8a (patch) | |
tree | 8fb0ef624e8930d7431475f934bd18c447940ed3 | |
parent | 6766f1175ac3fad1a2928ff1f798e9c11caf465d (diff) |
Add cache directory as a customizable variable
-rw-r--r-- | stack-core.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stack-core.el b/stack-core.el index 9a535cd..3391d14 100644 --- a/stack-core.el +++ b/stack-core.el @@ -44,6 +44,10 @@ ;;; Constants and Customizable Options +(defcustom stack-cache-directory + (expand-file-name ".stackmode" user-emacs-directory) + "Directory containined cached files and precompiled filters.") + (defconst stack-core-api-version "2.2" "The current version of the API.") |