diff options
| author | Aaron L. Zeng <me@bcc32.com> | 2019-04-12 16:14:17 -0400 |
|---|---|---|
| committer | Aaron L. Zeng <me@bcc32.com> | 2019-04-12 16:14:17 -0400 |
| commit | 4d9b3612ae2f51d0ed92478ae9baf9374d641b2d (patch) | |
| tree | b196f621ffb75d3f3c11f86da4b30c30599347e3 | |
| parent | 9a63f3909e5a331b6974deb03abd2c4bad42c2d9 (diff) | |
Fix definition of pdf-cache-prefetch-minor-mode keymap
`t` is not a valid keymap. I looked through the other minor-mode
definitions and didn't see any other such uses.
Found that this was causing me problems, see Wilfred/helpful#114.
| -rw-r--r-- | lisp/pdf-cache.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/pdf-cache.el b/lisp/pdf-cache.el index ea4182f..9ed7241 100644 --- a/lisp/pdf-cache.el +++ b/lisp/pdf-cache.el @@ -338,7 +338,7 @@ See also `pdf-info-renderpage-highlight' and (define-minor-mode pdf-cache-prefetch-minor-mode "Try to load images which will probably be needed in a while." - nil nil t + nil nil nil (pdf-cache--prefetch-cancel) (cond (pdf-cache-prefetch-minor-mode |
