* paths.el (rmail-file-name): Reformat the doc-string so that it is picked up.

This commit is contained in:
Glenn Morris 2011-11-23 00:48:07 -08:00
parent 9aac4de2aa
commit da94eca12f
2 changed files with 9 additions and 2 deletions

View file

@ -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.

View file

@ -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")