* gnus-cache.el (()): Make sure byte-compilation doesn't trip on
the undefined `gnus-add-shutdown'.
This commit is contained in:
parent
750ff6a808
commit
fb98e6ce18
1 changed files with 4 additions and 1 deletions
|
@ -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."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue