summaryrefslogtreecommitdiff
path: root/lisp/paths.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-11-23 23:32:40 -0800
committerGlenn Morris <rgm@gnu.org>2011-11-23 23:32:40 -0800
commit420b63ad29ddb217afc4a21b29f15c93df11d7d4 (patch)
tree5e7462bb2955cd6883f5c12b26f1b53c0e131c62 /lisp/paths.el
parentcb825e5d7b3f73eb393ba98ac25ed51597de6528 (diff)
downloademacs-420b63ad29ddb217afc4a21b29f15c93df11d7d4.tar.gz
* lib-src/make-docfile.c (scan_lisp_file): Treat defcustom like defvar.
* lisp/paths.el (rmail-file-name): Format doc-string for make-docfile.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r--lisp/paths.el8
1 files changed, 2 insertions, 6 deletions
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")