From 1b36278208e7dc44ca427562fd96271af8b8b923 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 29 Nov 1999 11:43:36 +0000 Subject: [PATCH] (gnus-after-getting-new-news-hook): Don't use the macro `when' in the arg of `defcustom'. Use `if' instead. --- lisp/gnus-start.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el index c9a4f4a..ddc14da 100644 --- a/lisp/gnus-start.el +++ b/lisp/gnus-start.el @@ -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) -- 1.7.10.4