diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2004-07-29 01:47:01 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2004-07-29 01:47:01 +0000 |
commit | 19229e5e7df38bee2f2d310d55d0b1eb66ebbfd5 (patch) | |
tree | 7bb5cdc1aa72197ae855cf22490e071fccf43c53 /lisp/custom.el | |
parent | 733f68b6ec84cfe592f16a1c49a69b5693eabab9 (diff) | |
download | emacs-19229e5e7df38bee2f2d310d55d0b1eb66ebbfd5.tar.gz |
(defcustom): Doc fix.
Diffstat (limited to 'lisp/custom.el')
-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: Specifies that SYMBOL should be set after the list of variables VARIABLES when both have been customized. +If SYMBOL has a local binding, then this form affects the local +binding. This is normally not what you want. Thus, if you need +to load a file defining variables with this form, or with +`defvar' or `defconst', you should always load that file +_outside_ any bindings for these variables. \(`defvar' and +`defconst' behave similarly in this respect.) + Read the section about customization in the Emacs Lisp manual for more information." ;; It is better not to use backquote in this file, |