mu4e: improve documentation for mailing-lists

And fix a typo.
This commit is contained in:
djcb 2015-12-23 21:26:21 +02:00
parent 27e9251d24
commit 4bca0d0739
1 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
;;; mu4e-lists.el -- part of mu4e, the mu mail user agent ;;; mu4e-lists.el -- part of mu4e, the mu mail user agent
;; ;;
;; Copyright (C) 2011-2012 Dirk-Jan C. Binnema ;; Copyright (C) 2011-2015 Dirk-Jan C. Binnema
;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
@ -79,15 +79,15 @@
("wl-en.ml.gentei.org" . "WdrLust") ("wl-en.ml.gentei.org" . "WdrLust")
("xapian-devel.lists.xapian.org" . "Xapian") ("xapian-devel.lists.xapian.org" . "Xapian")
("zsh-users.zsh.org" . "ZshUsr")) ("zsh-users.zsh.org" . "ZshUsr"))
"AList of mailing lists id -> shortname") "AList of cells (MAILING-LIST-ID . SHORTNAME)")
(defvar mu4e-user-mailing-lists nil (defvar mu4e-user-mailing-lists nil
"A list of (MAILING-LIST-ID . SHORTNAME); these are used in "An alist with cells (MAILING-LIST-ID . SHORTNAME); these are
addition to the 'built-in' list `mu4e~user-lists'.") used in addition to the built-in list `mu4e~mailing-lists'.")
(defvar mu4e-mailing-list-patterns nil (defvar mu4e-mailing-list-patterns nil
"A list of regex patterns to capture a shortname out of a list ID. For "A list of regex patterns to capture a shortname out of a list
the first regex that matches, its first matchgroup will be used as the ID. For the first regex that matches, its first matchgroup will
shortname.") be used as the shortname.")
(provide 'mu4e-lists) (provide 'mu4e-lists)