aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2004-05-10 22:08:58 +0000
committerJuanma Barranquero2004-05-10 22:08:58 +0000
commit494bcd27cb2221a849c81c8ef0df2cc7c4c9f0a5 (patch)
tree5b9a3fc15d87d1fd9645724c679f3e126677b927
parent7aa70236bc040be8349ff5113578520e5b1ed8ef (diff)
downloademacs-494bcd27cb2221a849c81c8ef0df2cc7c4c9f0a5.tar.gz
emacs-494bcd27cb2221a849c81c8ef0df2cc7c4c9f0a5.zip
(custom-initialize-default, defcustom): Fix typo in docstring.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/custom.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3485e4e7de6..373eb59adae 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12004-05-11 Juanma Barranquero <lektu@terra.es>
2
3 * custom.el (custom-initialize-default, defcustom): Fix typo in
4 docstring.
5
12004-05-10 Daniel Pfeiffer <occitan@esperanto.org> 62004-05-10 Daniel Pfeiffer <occitan@esperanto.org>
2 7
3 * progmodes/compile.el (compile): Add universal prefix arg. 8 * progmodes/compile.el (compile): Add universal prefix arg.
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.")
54 "Initialize SYMBOL with VALUE. 54 "Initialize SYMBOL with VALUE.
55This will do nothing if symbol already has a default binding. 55This will do nothing if symbol already has a default binding.
56Otherwise, if symbol has a `saved-value' property, it will evaluate 56Otherwise, if symbol has a `saved-value' property, it will evaluate
57the car of that and used as the default binding for symbol. 57the car of that and use it as the default binding for symbol.
58Otherwise, VALUE will be evaluated and used as the default binding for 58Otherwise, VALUE will be evaluated and used as the default binding for
59symbol." 59symbol."
60 (unless (default-boundp symbol) 60 (unless (default-boundp symbol)
@@ -176,7 +176,7 @@ set to nil, as the value is no longer rogue."
176 "Declare SYMBOL as a customizable variable that defaults to VALUE. 176 "Declare SYMBOL as a customizable variable that defaults to VALUE.
177DOC is the variable documentation. 177DOC is the variable documentation.
178 178
179Neither SYMBOL nor VALUE needs to be quoted. 179Neither SYMBOL nor VALUE need to be quoted.
180If SYMBOL is not already bound, initialize it to VALUE. 180If SYMBOL is not already bound, initialize it to VALUE.
181The remaining arguments should have the form 181The remaining arguments should have the form
182 182