diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 1996-07-14 14:42:27 +0000 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 1996-07-14 14:42:27 +0000 |
commit | fb98e6ce187f2cfc8ce6ebaf8823c9abdbdebea0 (patch) | |
tree | 6d032eaa7897f9111ad4870b0d43b549957fb13c | |
parent | 750ff6a8081c117e9e6713e6649430a6749ed5c7 (diff) | |
download | emacs-fb98e6ce187f2cfc8ce6ebaf8823c9abdbdebea0.tar.gz |
* gnus-cache.el (()): Make sure byte-compilation doesn't trip on
the undefined `gnus-add-shutdown'.
-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\".") (not (eq gnus-use-cache 'passive)))) (gnus-cache-read-active))) -(gnus-add-shutdown 'gnus-cache-close 'gnus) +(condition-case () + (gnus-add-shutdown 'gnus-cache-close 'gnus) + ;; Complexities of byte-compiling makes this kludge necessary. Eeek. + (error nil)) (defun gnus-cache-close () "Shut down the cache." |