is true).
For how the face is chosen for a buffer, see
-`erc-track-find-face' and `erc-track-priority-faces-only'. For
-how buffers are then displayed in the mode line, see
-`erc-modified-channels-display'.")
+`erc-track-select-mode-line-face' and
+`erc-track-priority-faces-only'. For how buffers are then
+displayed in the mode line, see `erc-modified-channels-display'.")
(defcustom erc-track-showcount nil
"If non-nil, count of unseen messages will be shown for each channel."
(erc-modified-channels-display)))
(defun erc-track-find-face (faces)
- "Return the face to use in the mode line from the faces in FACES.
-If `erc-track-faces-priority-list' is set, the one from FACES who
-is first in that list will be used. If nothing matches or if
-`erc-track-faces-priority-list' is not set, the default mode-line
-faces will be used.
-
-If `erc-track-faces-normal-list' is non-nil, use it to produce a
-blinking effect that indicates channel activity when the first
-element in FACES and the highest-ranking face among the rest of
-FACES are both members of `erc-track-faces-normal-list'.
-
-If one of the faces is a list, then it will be ranked according
-to its highest-tanking face member. A list of faces including
-that member will take priority over just the single member
-element."
+ "Return the face to use in the mode line."
+ (declare (obsolete erc-track-select-mode-line-face "28.1"))
+ (erc-track-select-mode-line-face (car faces) (cdr faces)))
+
+(defun erc-track-select-mode-line-face (cur-face new-faces)
+ "Return the face to use in the mode line.
+
+CUR-FACE is the face currently used in the mode line (for the
+current buffer). NEW-FACES is the list of new faces that have
+just been seen (in the current buffer).
+
+Initially, the selected face is the one with highest priority in
+`erc-track-faces-priority-list' (i.e., the one closest to the
+front of the list) among CUR-FACE and NEW-FACES. If nothing
+matches (including if `erc-track-faces-priority-list' is not
+set), the default mode-line faces will be used (NIL is returned).
+
+If the selected face is still CUR-FACE (highest priority), and
+the highest priority face in NEW-FACES alone is different (which
+necessarily means it has lower priority than CUR-FACE), and both
+are in `erc-track-faces-normal-list', then the latter is selected
+instead. This has the effect of allowing the current mode line
+face, if a member of `erc-track-faces-normal-list', to be
+replaced with another with lower priority face from NEW-FACES, if
+that face with highest priority in NEW-FACES is also a member of
+`erc-track-faces-normal-list'."
(let ((choice (catch 'face
- (dolist (candidate erc-track-faces-priority-list)
- (when (member candidate faces)
- (throw 'face candidate)))))
- (no-first (and erc-track-faces-normal-list
- (catch 'face
- (dolist (candidate erc-track-faces-priority-list)
- (when (member candidate (cdr faces))
- (throw 'face candidate)))))))
- (cond ((null choice)
- nil)
- ((and (member choice erc-track-faces-normal-list)
- (member no-first erc-track-faces-normal-list))
- no-first)
- (t
- choice))))
+ (dolist (candidate erc-track-faces-priority-list)
+ (when (or (equal candidate cur-face)
+ (member candidate new-faces))
+ (throw 'face candidate))))))
+ (when choice
+ (if (and (equal choice cur-face)
+ (member choice erc-track-faces-normal-list))
+ (let ((only-in-new
+ (catch 'face
+ (dolist (candidate erc-track-faces-priority-list)
+ (when (member candidate new-faces)
+ (throw 'face candidate))))))
+ (if (member only-in-new erc-track-faces-normal-list)
+ only-in-new
+ choice))
+ choice))))
(defun erc-track-modified-channels ()
"Hook function for `erc-insert-post-hook' to check if the current
;; Add buffer, faces and counts
(setq erc-modified-channels-alist
(cons (cons (current-buffer)
- (cons 1 (erc-track-find-face faces)))
+ (cons
+ 1 (erc-track-select-mode-line-face
+ (car faces) (cdr faces))))
erc-modified-channels-alist))
;; Else modify the face for the buffer, if necessary.
(when faces
(let* ((cell (assq (current-buffer)
erc-modified-channels-alist))
(old-face (cddr cell))
- (new-face (erc-track-find-face
- (if old-face
- (cons old-face faces)
- faces))))
+ (new-face (if old-face
+ (erc-track-select-mode-line-face
+ old-face faces)
+ (erc-track-select-mode-line-face
+ (car faces) (cdr faces)))))
(setcdr cell (cons (1+ (cadr cell)) new-face)))))
;; And display it
(erc-modified-channels-display)))