* wl-util.el (wl-biff-notify): Run `wl-biff-unnotify-hook' when
biff notification is removed.
+2001-04-02 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-vars.el (wl-biff-unnotify-hook): New variable.
+
+ * wl-util.el (wl-biff-notify): Run `wl-biff-unnotify-hook' when
+ biff notification is removed.
+
2001-03-20 TAKAHASHI Kaoru <kaoru@kaisei.org>
* wl-folder.el (wl-folder-write-current-folder): Support petname.
(defsubst wl-biff-notify (new-mails notify-minibuf)
(when (and (not wl-modeline-biff-status) (> new-mails 0))
(run-hooks 'wl-biff-notify-hook))
+ (when (and wl-modeline-biff-status (eq new-mails 0))
+ (run-hooks 'wl-biff-unnotify-hook))
(setq wl-modeline-biff-status (> new-mails 0))
(force-mode-line-update t)
(when notify-minibuf
"A hook called when suspend wanderlust.")
(defvar wl-biff-notify-hook nil
"A hook called when a biff-notification is invoked.")
+(defvar wl-biff-unnotify-hook nil
+ "A hook called when a biff-notification is removed.")
(defvar wl-auto-check-folder-pre-hook nil
"A hook called before auto check folders.")
(defvar wl-auto-check-folder-hook nil