diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus-cache.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/gnus-cache.el b/lisp/gnus-cache.el index 24b38c64667..cb770a8c619 100644 --- a/lisp/gnus-cache.el +++ b/lisp/gnus-cache.el | |||
| @@ -71,7 +71,10 @@ variable to \"^nnml\".") | |||
| 71 | (not (eq gnus-use-cache 'passive)))) | 71 | (not (eq gnus-use-cache 'passive)))) |
| 72 | (gnus-cache-read-active))) | 72 | (gnus-cache-read-active))) |
| 73 | 73 | ||
| 74 | (gnus-add-shutdown 'gnus-cache-close 'gnus) | 74 | (condition-case () |
| 75 | (gnus-add-shutdown 'gnus-cache-close 'gnus) | ||
| 76 | ;; Complexities of byte-compiling makes this kludge necessary. Eeek. | ||
| 77 | (error nil)) | ||
| 75 | 78 | ||
| 76 | (defun gnus-cache-close () | 79 | (defun gnus-cache-close () |
| 77 | "Shut down the cache." | 80 | "Shut down the cache." |