]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-initialize-changed, defcustom): Doc fix.
authorDave Love <fx@gnu.org>
Wed, 21 Feb 2001 20:47:38 +0000 (20:47 +0000)
committerDave Love <fx@gnu.org>
Wed, 21 Feb 2001 20:47:38 +0000 (20:47 +0000)
lisp/ChangeLog
lisp/custom.el

index 4d3324dcea7a2d4d95daea203b85184d6b4072ed..b807d9e6bc20edea7877d7d9eabeede40e7adee2 100644 (file)
@@ -1,5 +1,7 @@
 2001-02-21  Dave Love  <fx@gnu.org>
 
+       * 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.
index 8725e7b81b6b807ca74aaa5acca0b0fbb7e7f245..392305af153eb2bcd38a025f1667ee22f4898320 100644 (file)
@@ -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.