mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
* paths.el (rmail-file-name): Reformat the doc-string so that it is picked up.
This commit is contained in:
parent
9aac4de2aa
commit
da94eca12f
2 changed files with 9 additions and 2 deletions
|
|
@ -4,6 +4,9 @@
|
|||
|
||||
2011-11-23 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* paths.el (rmail-file-name): Reformat the doc-string so that it
|
||||
is picked up.
|
||||
|
||||
* mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
|
||||
(rmail-auto-file): Ignore case in the "special" field names,
|
||||
as mail-fetch-field does for all others.
|
||||
|
|
|
|||
|
|
@ -132,8 +132,12 @@ should be set to `(system-name)'.")
|
|||
*The name of your organization, as a string.
|
||||
The `ORGANIZATION' environment variable is used instead if defined.")
|
||||
|
||||
(defcustom rmail-file-name (purecopy "~/RMAIL") "\
|
||||
Name of user's primary mail file."
|
||||
;; This is a defcustom, which make-docfile does not recognize in
|
||||
;; uncompiled Lisp code. If we use the "\ method of writing the doc,
|
||||
;; it does not get a doc string. Somehow if we write it in the "wrong"
|
||||
;; (ie normal) way (as below), it does... See also remote-shell-program.
|
||||
(defcustom rmail-file-name (purecopy "~/RMAIL")
|
||||
"Name of user's primary mail file."
|
||||
:type 'string
|
||||
:group 'rmail
|
||||
:version "21.1")
|
||||
|
|
|
|||
Loading…
Reference in a new issue