diff options
| author | Juri Linkov | 2005-11-21 07:56:50 +0000 |
|---|---|---|
| committer | Juri Linkov | 2005-11-21 07:56:50 +0000 |
| commit | 11ee7d4e70278ed52ef4e538e0878fcc4db83ed1 (patch) | |
| tree | 518a4151107d29cde39eadb4188dd5500dffa1b7 | |
| parent | 27a0fffee784712986195036619f2194e72ac9ab (diff) | |
| download | emacs-11ee7d4e70278ed52ef4e538e0878fcc4db83ed1.tar.gz emacs-11ee7d4e70278ed52ef4e538e0878fcc4db83ed1.zip | |
(defcustom): Update link types in docstring.
| -rw-r--r-- | lisp/custom.el | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index e51a678cd01..0c6085c714f 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -210,12 +210,11 @@ The following keywords are meaningful: | |||
| 210 | item. This is a sentence containing an active field which | 210 | item. This is a sentence containing an active field which |
| 211 | references some other documentation. | 211 | references some other documentation. |
| 212 | 212 | ||
| 213 | There are three alternatives you can use for LINK-DATA: | 213 | There are several alternatives you can use for LINK-DATA: |
| 214 | 214 | ||
| 215 | (custom-manual INFO-NODE) | 215 | (custom-manual INFO-NODE) |
| 216 | Link to an Info node; INFO-NODE is a string which specifies | 216 | Link to an Info node; INFO-NODE is a string which specifies |
| 217 | the node name, as in \"(emacs)Top\". The link appears as | 217 | the node name, as in \"(emacs)Top\". |
| 218 | `[manual]' in the customization buffer. | ||
| 219 | 218 | ||
| 220 | (info-link INFO-NODE) | 219 | (info-link INFO-NODE) |
| 221 | Like `custom-manual' except that the link appears in the | 220 | Like `custom-manual' except that the link appears in the |
| @@ -223,7 +222,24 @@ The following keywords are meaningful: | |||
| 223 | 222 | ||
| 224 | (url-link URL) | 223 | (url-link URL) |
| 225 | Link to a web page; URL is a string which specifies the URL. | 224 | Link to a web page; URL is a string which specifies the URL. |
| 226 | The link appears in the customization buffer as URL. | 225 | |
| 226 | (emacs-commentary-link LIBRARY) | ||
| 227 | Link to the commentary section of LIBRARY. | ||
| 228 | |||
| 229 | (emacs-library-link LIBRARY) | ||
| 230 | Link to an Emacs Lisp LIBRARY file. | ||
| 231 | |||
| 232 | (file-link FILE) | ||
| 233 | Link to FILE. | ||
| 234 | |||
| 235 | (function-link FUNCTION) | ||
| 236 | Link to the documentation of FUNCTION. | ||
| 237 | |||
| 238 | (variable-link VARIABLE) | ||
| 239 | Link to the documentation of VARIABLE. | ||
| 240 | |||
| 241 | (custom-group-link GROUP) | ||
| 242 | Link to another customization GROUP. | ||
| 227 | 243 | ||
| 228 | You can specify the text to use in the customization buffer by | 244 | You can specify the text to use in the customization buffer by |
| 229 | adding `:tag NAME' after the first element of the LINK-DATA; for | 245 | adding `:tag NAME' after the first element of the LINK-DATA; for |