aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-09-04 11:31:31 +0000
committerDave Love1999-09-04 11:31:31 +0000
commite884c2607b4e931b9a344102a2ca24804679d3a2 (patch)
tree9ba568c3fc07c8fbee9d7699d9aabee3f99c68bb
parent688953b5feba04e0fcb434b247722cf6050453c5 (diff)
downloademacs-e884c2607b4e931b9a344102a2ca24804679d3a2.tar.gz
emacs-e884c2607b4e931b9a344102a2ca24804679d3a2.zip
Make some doc strings obey the make-docfile convention.
-rw-r--r--lisp/paths.el26
1 files changed, 15 insertions, 11 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index 9e804e1fa11..bc8e66337ab 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -32,6 +32,10 @@
32 32
33;;; Code: 33;;; Code:
34 34
35;; Docstrings in this file should, where reasonable, follow the
36;; conventions described in bindings.el, so that they get put in the
37;; DOC file rather than in memory.
38
35(defvar Info-default-directory-list 39(defvar Info-default-directory-list
36 (let* ((start (list "/usr/local/lib/info/" 40 (let* ((start (list "/usr/local/lib/info/"
37 ;; This comes second so that, if it is the same 41 ;; This comes second so that, if it is the same
@@ -80,9 +84,9 @@ for initializing `Info-directory-list' when Info is started.")
80 (t "inews")) 84 (t "inews"))
81 "Program to post news.") 85 "Program to post news.")
82 86
83(defvar gnus-default-nntp-server "" 87;; set this to your local server
84 ;; set this to your local server 88(defvar gnus-default-nntp-server "" "\
85 "The name of the host running an NNTP server. 89The name of the host running an NNTP server.
86The null string means use the local host as the server site.") 90The null string means use the local host as the server site.")
87 91
88(defvar gnus-nntp-service "nntp" 92(defvar gnus-nntp-service "nntp"
@@ -90,16 +94,16 @@ The null string means use the local host as the server site.")
90Go to a local news spool if its value is nil, in which case `gnus-nntp-server' 94Go to a local news spool if its value is nil, in which case `gnus-nntp-server'
91should be set to `(system-name)'.") 95should be set to `(system-name)'.")
92 96
93(defvar gnus-local-organization nil 97(defvar gnus-local-organization nil "\
94 "*The name of your organization, as a string. 98*The name of your organization, as a string.
95The `ORGANIZATION' environment variable is used instead if defined.") 99The `ORGANIZATION' environment variable is used instead if defined.")
96 100
97(defvar gnus-startup-file "~/.newsrc" 101(defvar gnus-startup-file "~/.newsrc" "\
98 "The file listing groups to which user is subscribed. 102The file listing groups to which user is subscribed.
99Will use `gnus-startup-file'-SERVER instead if exists.") 103Will use `gnus-startup-file'-SERVER instead if exists.")
100 104
101(defvar rmail-file-name "~/RMAIL" 105(defvar rmail-file-name "~/RMAIL" "\
102 "Name of user's primary mail file.") 106Name of user's primary mail file.")
103 107
104(defconst rmail-spool-directory 108(defconst rmail-spool-directory
105 (cond ((string-match "^[^-]+-[^-]+-sco3.2v4" system-configuration) 109 (cond ((string-match "^[^-]+-[^-]+-sco3.2v4" system-configuration)
@@ -152,8 +156,8 @@ Its name should end with a slash.")
152 ((file-exists-p "/usr/bin/rsh") "/usr/bin/rsh") 156 ((file-exists-p "/usr/bin/rsh") "/usr/bin/rsh")
153 (t "rsh"))) 157 (t "rsh")))
154 158
155(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") 159(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") "\
156 "If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\"))) 160If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
157You may set this variable to nil in your `.emacs' file if you do not wish 161You may set this variable to nil in your `.emacs' file if you do not wish
158the terminal-initialization file to be loaded.") 162the terminal-initialization file to be loaded.")
159 163