aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2005-03-22 18:48:38 +0000
committerStefan Monnier <[email protected]>2005-03-22 18:48:38 +0000
commit0302b80e5370a57fac21d226be1064c6cca923c3 (patch)
treed06cbd3dea9cd74ba73d32b511e5375618e0199a /lisp
parentb9d8ddef391075df0f8925dcf84bf8b8084232b3 (diff)
(gnus-display-time-event-handler):
Check display-time-timer at runtime rather than only at load time in case display-time-mode is turned off in the mean time.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog17
-rw-r--r--lisp/gnus/gnus-start.el14
2 files changed, 17 insertions, 14 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index b997b86b0c..d581274b80 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-22 Stefan Monnier <[email protected]>
+
+ * gnus-start.el (gnus-display-time-event-handler):
+ Check display-time-timer at runtime rather than only at load time
+ in case display-time-mode is turned off in the mean time.
+
2005-03-16 Reiner Steib <[email protected]>
* nnimap.el (nnimap-open-connection): Print which authinfo file is
@@ -11,8 +17,8 @@
2005-03-15 Reiner Steib <[email protected]>
- * nnmaildir.el (nnmaildir-request-accept-article): Use
- `nnheader-cancel-timer' for compatibility with current XEmacs.
+ * nnmaildir.el (nnmaildir-request-accept-article):
+ Use `nnheader-cancel-timer' for compatibility with current XEmacs.
2005-03-13 Steve Youngs <[email protected]>
@@ -26,12 +32,12 @@
for `with-timeout'.
* mail-source.el: Require timer-funcs at compile time when in
- XEmacs for `run-with-idle-timer'.
+ XEmacs for `run-with-idle-timer'.
* gnus-async.el: Ditto.
* dgnushack.el: No need to ignore `run-with-idle-timer', XEmacs
- has this function now.
+ has this function now.
2005-03-16 Lute Kamstra <[email protected]>
@@ -43,8 +49,7 @@
2005-03-10 Arne J,Ax(Brgensen <[email protected]> (tiny change)
- * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one
- flaw.
+ * nnimap.el (nnimap-retrieve-headers-from-server): Fix off-by-one flaw.
2005-03-08 Bjorn Solberg <[email protected]> (tiny change)
diff --git a/lisp/gnus/gnus-start.el b/lisp/gnus/gnus-start.el
index f011341651..6eec4f4e84 100644
--- a/lisp/gnus/gnus-start.el
+++ b/lisp/gnus/gnus-start.el
@@ -1,5 +1,5 @@
;;; gnus-start.el --- startup functions for Gnus
-;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
;; Free Software Foundation, Inc.
;; Author: Lars Magne Ingebrigtsen <[email protected]>
@@ -3083,12 +3083,10 @@ If this variable is nil, don't do anything."
(file-name-as-directory (expand-file-name gnus-default-directory))
default-directory)))
-(eval-and-compile
-(defalias 'gnus-display-time-event-handler
- (if (gnus-boundp 'display-time-timer)
- 'display-time-event-handler
- (lambda () "Does nothing as `display-time-timer' is not bound.
-Would otherwise be an alias for `display-time-event-handler'." nil))))
+(defun gnus-display-time-event-handler ()
+ (if (and (fboundp 'display-time-event-handler)
+ (gnus-boundp 'display-time-timer))
+ (display-time-event-handler)))
;;;###autoload
(defun gnus-fixup-nnimap-unread-after-getting-new-news ()
@@ -3107,7 +3105,7 @@ Would otherwise be an alias for `display-time-event-handler'." nil))))
(provide 'gnus-start)
-;;; arch-tag: f4584a22-b7b7-4853-abfc-a637329af5d2
+;; arch-tag: f4584a22-b7b7-4853-abfc-a637329af5d2
;;; gnus-start.el ends here