From: Dave Love Date: Wed, 21 Feb 2001 20:47:38 +0000 (+0000) Subject: (custom-initialize-changed, defcustom): Doc fix. X-Git-Tag: emacs-pretest-21.0.99~230 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f4c9a87dd2cf316868d146db66c988f2886c9a5;p=emacs.git (custom-initialize-changed, defcustom): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4d3324dcea7..b807d9e6bc2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2001-02-21 Dave Love + * custom.el (custom-initialize-changed, defcustom): Doc fix. + * international/mule-cmds.el, international/mule.el: Doc fixes. * play/fortune.el: Fix autoload cookies. Add types to defcustoms. diff --git a/lisp/custom.el b/lisp/custom.el index 8725e7b81b6..392305af153 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -86,9 +86,9 @@ or (last of all) VALUE." (defun custom-initialize-changed (symbol value) "Initialize SYMBOL with VALUE. -Like `custom-initialize-reset', but only use the `:set' function if the +Like `custom-initialize-reset', but only use the `:set' function if not using the standard setting. -For the standard setting, use the `set-default'." +For the standard setting, use `set-default'." (cond ((default-boundp symbol) (funcall (or (get symbol 'custom-set) 'set-default) symbol @@ -165,7 +165,6 @@ The remaining arguments should have the form The following keywords are meaningful: :type VALUE should be a widget type for editing the symbols value. - The default is `sexp'. :options VALUE should be a list of valid members of the widget type. :group VALUE should be a customization group. Add SYMBOL to that group.