diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2004-05-10 22:08:58 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2004-05-10 22:08:58 +0000 |
commit | 494bcd27cb2221a849c81c8ef0df2cc7c4c9f0a5 (patch) | |
tree | 5b9a3fc15d87d1fd9645724c679f3e126677b927 /lisp/custom.el | |
parent | 7aa70236bc040be8349ff5113578520e5b1ed8ef (diff) | |
download | emacs-494bcd27cb2221a849c81c8ef0df2cc7c4c9f0a5.tar.gz |
(custom-initialize-default, defcustom): Fix typo in docstring.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index f5cfd55400a..a0aeeca659d 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -54,7 +54,7 @@ Users should not set it.") "Initialize SYMBOL with VALUE. This will do nothing if symbol already has a default binding. Otherwise, if symbol has a `saved-value' property, it will evaluate -the car of that and used as the default binding for symbol. +the car of that and use it as the default binding for symbol. Otherwise, VALUE will be evaluated and used as the default binding for symbol." (unless (default-boundp symbol) @@ -176,7 +176,7 @@ set to nil, as the value is no longer rogue." "Declare SYMBOL as a customizable variable that defaults to VALUE. DOC is the variable documentation. -Neither SYMBOL nor VALUE needs to be quoted. +Neither SYMBOL nor VALUE need to be quoted. If SYMBOL is not already bound, initialize it to VALUE. The remaining arguments should have the form |