diff options
| author | Glenn Morris | 2011-11-23 00:48:07 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-11-23 00:48:07 -0800 |
| commit | da94eca12f45cc4d22f3a7f6febfd94b87359bbe (patch) | |
| tree | ca670eccfbe36b9ed69d3746558ce77ea82216f5 | |
| parent | 9aac4de2aa4fc07530345b666209933553fd6c23 (diff) | |
| download | emacs-da94eca12f45cc4d22f3a7f6febfd94b87359bbe.tar.gz emacs-da94eca12f45cc4d22f3a7f6febfd94b87359bbe.zip | |
* paths.el (rmail-file-name): Reformat the doc-string so that it is picked up.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/paths.el | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9cf50d4c00b..896d08ea163 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -4,6 +4,9 @@ | |||
| 4 | 4 | ||
| 5 | 2011-11-23 Glenn Morris <rgm@gnu.org> | 5 | 2011-11-23 Glenn Morris <rgm@gnu.org> |
| 6 | 6 | ||
| 7 | * paths.el (rmail-file-name): Reformat the doc-string so that it | ||
| 8 | is picked up. | ||
| 9 | |||
| 7 | * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes. | 10 | * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes. |
| 8 | (rmail-auto-file): Ignore case in the "special" field names, | 11 | (rmail-auto-file): Ignore case in the "special" field names, |
| 9 | as mail-fetch-field does for all others. | 12 | as mail-fetch-field does for all others. |
diff --git a/lisp/paths.el b/lisp/paths.el index 161caf9cb8c..c608fd98993 100644 --- a/lisp/paths.el +++ b/lisp/paths.el | |||
| @@ -132,8 +132,12 @@ should be set to `(system-name)'.") | |||
| 132 | *The name of your organization, as a string. | 132 | *The name of your organization, as a string. |
| 133 | The `ORGANIZATION' environment variable is used instead if defined.") | 133 | The `ORGANIZATION' environment variable is used instead if defined.") |
| 134 | 134 | ||
| 135 | (defcustom rmail-file-name (purecopy "~/RMAIL") "\ | 135 | ;; This is a defcustom, which make-docfile does not recognize in |
| 136 | Name of user's primary mail file." | 136 | ;; uncompiled Lisp code. If we use the "\ method of writing the doc, |
| 137 | ;; it does not get a doc string. Somehow if we write it in the "wrong" | ||
| 138 | ;; (ie normal) way (as below), it does... See also remote-shell-program. | ||
| 139 | (defcustom rmail-file-name (purecopy "~/RMAIL") | ||
| 140 | "Name of user's primary mail file." | ||
| 137 | :type 'string | 141 | :type 'string |
| 138 | :group 'rmail | 142 | :group 'rmail |
| 139 | :version "21.1") | 143 | :version "21.1") |