]> git.eshelyaron.com Git - emacs.git/commitdiff
ERC: Track: Fix documentation of structure of 'erc-modified-channels-alist'
authorOlivier Certner <olce.emacs@certner.fr>
Wed, 13 Jan 2021 16:39:54 +0000 (17:39 +0100)
committerAmin Bandali <bandali@gnu.org>
Sun, 12 Sep 2021 02:54:44 +0000 (22:54 -0400)
* lisp/erc/erc-track.el (erc-modified-channels-alist): Fix the
docstring: each element is a dotted list where the last cdr is
sometimes a proper list, making the element only sometimes a proper
list.

lisp/erc/erc-track.el

index 11270770659a9f824aa35b7b86acff5811d77b45..b6055b6fdab0bdad4e6e975bdb275d3b9e3dfa09 100644 (file)
@@ -281,14 +281,17 @@ nil            - don't add to mode line."
 
 (defvar erc-modified-channels-alist nil
   "An ALIST used for tracking channel modification activity.
-Each element looks like (BUFFER COUNT FACE) where BUFFER is a buffer
-object of the channel the entry corresponds to, COUNT is a number
-indicating how often activity was noticed, and FACE is the face to use
-when displaying the buffer's name.  See `erc-track-faces-priority-list',
-and `erc-track-showcount'.
+Each element is a list of the form (BUFFER COUNT . FACE) where
+BUFFER is a buffer object of the channel the entry corresponds
+to, COUNT is a number indicating how often activity was noticed,
+and FACE is a face (or a list of faces) to use when displaying the
+buffer's name.
 
 Entries in this list should only happen for buffers where activity occurred
-while the buffer was not visible.")
+while the buffer was not visible.
+
+See also `erc-track-faces-priority-list',
+`erc-track-faces-normal-list' and `erc-track-showcount'.")
 
 (defcustom erc-track-showcount nil
   "If non-nil, count of unseen messages will be shown for each channel."