diff options
| author | Glenn Morris | 2009-11-14 04:14:49 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-11-14 04:14:49 +0000 |
| commit | 7a41cd7f975bca97526271f829e8843ffe34cd13 (patch) | |
| tree | 4320988556ef6eedb9aa6541986b7785576a04c5 | |
| parent | d31357463781689dcaa20bf37da732ed4ac34ca3 (diff) | |
| download | emacs-7a41cd7f975bca97526271f829e8843ffe34cd13.tar.gz emacs-7a41cd7f975bca97526271f829e8843ffe34cd13.zip | |
(defgroup): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/custom.el | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4036291a274..8a40f5ab5ef 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2009-11-14 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * custom.el (defgroup): | ||
| 4 | * epg-config.el (epg): | ||
| 5 | * ps-print.el (postscript): Doc fixes. | ||
| 6 | |||
| 1 | 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu> | 7 | 2009-11-14 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 8 | ||
| 3 | * bindings.el (mode-line-buffer-identification): Purecopy only the string. | 9 | * bindings.el (mode-line-buffer-identification): Purecopy only the string. |
diff --git a/lisp/custom.el b/lisp/custom.el index b9988530e3c..e67ccfc0081 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -423,7 +423,10 @@ for more information." | |||
| 423 | "Declare SYMBOL as a customization group containing MEMBERS. | 423 | "Declare SYMBOL as a customization group containing MEMBERS. |
| 424 | SYMBOL does not need to be quoted. | 424 | SYMBOL does not need to be quoted. |
| 425 | 425 | ||
| 426 | Third arg DOC is the group documentation. | 426 | Third argument DOC is the group documentation. This should be a short |
| 427 | description of the group, beginning with a capital and ending with | ||
| 428 | a period. Words other than the first should not be capitalized, if they | ||
| 429 | are not usually written so. | ||
| 427 | 430 | ||
| 428 | MEMBERS should be an alist of the form ((NAME WIDGET)...) where | 431 | MEMBERS should be an alist of the form ((NAME WIDGET)...) where |
| 429 | NAME is a symbol and WIDGET is a widget for editing that symbol. | 432 | NAME is a symbol and WIDGET is a widget for editing that symbol. |