aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-03 19:57:07 +0000
committerRichard M. Stallman2002-01-03 19:57:07 +0000
commit3dc5f18e682f62402b9aaa3358e134ab4a78b432 (patch)
treeb6192909e474a849e766f4379f1a2479941028d3
parent56aca04ab166bb1ae6221163ddac0765c61d6a29 (diff)
downloademacs-3dc5f18e682f62402b9aaa3358e134ab4a78b432.tar.gz
emacs-3dc5f18e682f62402b9aaa3358e134ab4a78b432.zip
(defcustom): Fix syntax of previous change.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/custom.el12
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ee7e5e74e33..b97d56de84a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12002-01-03 Richard M. Stallman <rms@gnu.org>
2
3 * custom.el (defcustom): Fix syntax of previous change.
4
12002-01-03 Per Abrahamsen <abraham@dina.kvl.dk> 52002-01-03 Per Abrahamsen <abraham@dina.kvl.dk>
2 6
3 * custom.el (defcustom): Documented :tag, :link and :load. 7 * custom.el (defcustom): Documented :tag, :link and :load.
diff --git a/lisp/custom.el b/lisp/custom.el
index 96df3900ade..1bc53200aed 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -173,29 +173,29 @@ The following keywords are meaningful:
173:options VALUE should be a list of valid members of the widget type. 173:options VALUE should be a list of valid members of the widget type.
174:group VALUE should be a customization group. 174:group VALUE should be a customization group.
175 Add SYMBOL to that group. 175 Add SYMBOL to that group.
176:link LINK-DATA' 176:link LINK-DATA
177 Include an external link after the documentation string for this 177 Include an external link after the documentation string for this
178 item. This is a sentence containing an active field which 178 item. This is a sentence containing an active field which
179 references some other documentation. 179 references some other documentation.
180 180
181 There are three alternatives you can use for LINK-DATA: 181 There are three alternatives you can use for LINK-DATA:
182 182
183 `(custom-manual INFO-NODE)' 183 (custom-manual INFO-NODE)
184 Link to an Info node; INFO-NODE is a string which specifies 184 Link to an Info node; INFO-NODE is a string which specifies
185 the node name, as in `\"(emacs)Top\"'. The link appears as 185 the node name, as in \"(emacs)Top\". The link appears as
186 `[manual]' in the customization buffer. 186 `[manual]' in the customization buffer.
187 187
188 `(info-link INFO-NODE)' 188 (info-link INFO-NODE)
189 Like `custom-manual' except that the link appears in the 189 Like `custom-manual' except that the link appears in the
190 customization buffer with the Info node name. 190 customization buffer with the Info node name.
191 191
192 `(url-link URL)' 192 (url-link URL)
193 Link to a web page; URL is a string which specifies the URL. 193 Link to a web page; URL is a string which specifies the URL.
194 The link appears in the customization buffer as URL. 194 The link appears in the customization buffer as URL.
195 195
196 You can specify the text to use in the customization buffer by 196 You can specify the text to use in the customization buffer by
197 adding `:tag NAME' after the first element of the LINK-DATA; for 197 adding `:tag NAME' after the first element of the LINK-DATA; for
198 example, `(info-link :tag \"foo\" \"(emacs)Top\")' makes a link to the 198 example, (info-link :tag \"foo\" \"(emacs)Top\") makes a link to the
199 Emacs manual which appears in the buffer as `foo'. 199 Emacs manual which appears in the buffer as `foo'.
200 200
201 An item can have more than one external link; however, most items 201 An item can have more than one external link; however, most items