(gnus-after-getting-new-news-hook): Don't use the macro `when' in the arg
authoryamaoka <yamaoka>
Mon, 29 Nov 1999 11:43:36 +0000 (11:43 +0000)
committeryamaoka <yamaoka>
Mon, 29 Nov 1999 11:43:36 +0000 (11:43 +0000)
of `defcustom'.  Use `if' instead.

lisp/gnus-start.el

index c9a4f4a..ddc14da 100644 (file)
@@ -369,9 +369,9 @@ This hook is called as the first thing when Gnus is started."
   :type 'hook)
 
 (defcustom gnus-after-getting-new-news-hook
-  (when (gnus-boundp 'display-time-timer)
-    '(display-time-event-handler))
-  "*A hook run after Gnus checks for new news when Gnus is already running."
+  (if (gnus-boundp 'display-time-timer)
+      '(display-time-event-handler))
+  "A hook run after Gnus checks for new news when Gnus is already running."
   :group 'gnus-group-new
   :type 'hook)