diff options
author | Sean Allred <code@seanallred.com> | 2014-11-05 19:25:43 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-05 19:25:43 -0500 |
commit | c12e332149f3183888119701fc3c257af6bd4324 (patch) | |
tree | 72f7befb1394677e1d79806eec2cc79c6d7f6c61 /stack-core.el | |
parent | d0e0b26fb00a7cda45078398d056de524afc6d2d (diff) |
Further explain `stack-cache-directory'
I looked at it for a few minutes and wondered how to use it -- and I
wrote the thing! :)
Diffstat (limited to 'stack-core.el')
-rw-r--r-- | stack-core.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stack-core.el b/stack-core.el index 2e9b652..585cc73 100644 --- a/stack-core.el +++ b/stack-core.el @@ -274,7 +274,9 @@ context of `stack-cache-directory'." "Set the content of CACHE to DATA. As with `stack-cache-get', CACHE is a file name within the -context of `stack-cache-directory'." +context of `stack-cache-directory'. + +DATA will be written as returned by `prin1'." (unless (file-exists-p stack-cache-directory) (mkdir stack-cache-directory)) (write-region (prin1-to-string data) nil |