* gnus-cache.el (()): Make sure byte-compilation doesn't trip on

the undefined `gnus-add-shutdown'.
This commit is contained in:
Lars Magne Ingebrigtsen 1996-07-14 14:42:27 +00:00
parent 750ff6a808
commit fb98e6ce18

View file

@ -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."