diff options
| -rw-r--r-- | lisp/custom.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index e86308c95e7..2ddd7ceb943 100644 --- a/lisp/custom.el +++ b/lisp/custom.el | |||
| @@ -246,6 +246,13 @@ The following keywords are meaningful: | |||
| 246 | Specifies that SYMBOL should be set after the list of variables | 246 | Specifies that SYMBOL should be set after the list of variables |
| 247 | VARIABLES when both have been customized. | 247 | VARIABLES when both have been customized. |
| 248 | 248 | ||
| 249 | If SYMBOL has a local binding, then this form affects the local | ||
| 250 | binding. This is normally not what you want. Thus, if you need | ||
| 251 | to load a file defining variables with this form, or with | ||
| 252 | `defvar' or `defconst', you should always load that file | ||
| 253 | _outside_ any bindings for these variables. \(`defvar' and | ||
| 254 | `defconst' behave similarly in this respect.) | ||
| 255 | |||
| 249 | Read the section about customization in the Emacs Lisp manual for more | 256 | Read the section about customization in the Emacs Lisp manual for more |
| 250 | information." | 257 | information." |
| 251 | ;; It is better not to use backquote in this file, | 258 | ;; It is better not to use backquote in this file, |