From fb98e6ce187f2cfc8ce6ebaf8823c9abdbdebea0 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Sun, 14 Jul 1996 14:42:27 +0000 Subject: [PATCH] * gnus-cache.el (()): Make sure byte-compilation doesn't trip on the undefined `gnus-add-shutdown'. --- lisp/gnus-cache.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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." -- 2.39.2