diff options
| -rw-r--r-- | lisp/custom.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index 7b5fc04718d..2f1b7ab9f1e 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -233,9 +233,9 @@ The following keywords are meaningful: | |||
| 233 | Load file FILE (a string) before displaying this customization | 233 | Load file FILE (a string) before displaying this customization |
| 234 | item. Loading is done with `load', and only if the file is | 234 | item. Loading is done with `load', and only if the file is |
| 235 | not already loaded. | 235 | not already loaded. |
| 236 | :set-after VARIABLE | 236 | :set-after VARIABLES |
| 237 | Specifies that SYMBOL should be set after VARIABLE when | 237 | Specifies that SYMBOL should be set after the list of variables |
| 238 | both have been customized. | 238 | VARIABLES when both have been customized. |
| 239 | 239 | ||
| 240 | Read the section about customization in the Emacs Lisp manual for more | 240 | Read the section about customization in the Emacs Lisp manual for more |
| 241 | information." | 241 | information." |
| @@ -517,7 +517,7 @@ in every Customization buffer.") | |||
| 517 | (defun custom-set-variables (&rest args) | 517 | (defun custom-set-variables (&rest args) |
| 518 | "Initialize variables according to user preferences. | 518 | "Initialize variables according to user preferences. |
| 519 | 519 | ||
| 520 | The arguments should be a list where each entry has the form: | 520 | The arguments should each be a list of the form: |
| 521 | 521 | ||
| 522 | (SYMBOL VALUE [NOW [REQUEST [COMMENT]]]) | 522 | (SYMBOL VALUE [NOW [REQUEST [COMMENT]]]) |
| 523 | 523 | ||