summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/paths.el8
2 files changed, 4 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6bfdf627e7e..ef5fdc60838 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2011-11-24 Glenn Morris <rgm@gnu.org>
+ * paths.el (rmail-file-name): Format doc-string for make-docfile.
+
* version.el (emacs-build-system): Give it a doc-string.
2011-11-24 Juri Linkov <juri@jurta.org>
diff --git a/lisp/paths.el b/lisp/paths.el
index c608fd98993..161caf9cb8c 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -132,12 +132,8 @@ should be set to `(system-name)'.")
*The name of your organization, as a string.
The `ORGANIZATION' environment variable is used instead if defined.")
-;; 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."
+(defcustom rmail-file-name (purecopy "~/RMAIL") "\
+Name of user's primary mail file."
:type 'string
:group 'rmail
:version "21.1")