]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix void function definition error in cus-edit.el
authorMiles Bader <miles@gnu.org>
Mon, 30 Jul 2007 05:33:55 +0000 (05:33 +0000)
committerMiles Bader <miles@gnu.org>
Mon, 30 Jul 2007 05:33:55 +0000 (05:33 +0000)
2007-07-30  Michael Olson  <mwolson@gnu.org>

* cus-edit.el (custom-group-save): Fix void function definition
error.  Thanks to Zhang Wei for the report.

Revision: emacs@sv.gnu.org/emacs--devo--0--patch-834
Creator:  Michael Olson <mwolson@gnu.org>

lisp/ChangeLog
lisp/cus-edit.el

index d9d7ef07e81be26f815fdb088c520645358b0663..d23489d3956ad8aa3427a7148791c37220efe665 100644 (file)
@@ -1,5 +1,8 @@
 2007-07-30  Michael Olson  <mwolson@gnu.org>
 
+       * cus-edit.el (custom-group-save): Fix void function definition
+       error.  Thanks to Zhang Wei for the report.
+
        * ps-print.el: Check in trivial changes to the autoloads section
        caused by the build process.  These autoloads really ought to be
        placed in a separate file, methinks.
index 200f173e88207d2c5c65b568828f53d0d8f8a911..ff86711e041a972c19b5b5a14318b142d9a26835 100644 (file)
@@ -4014,7 +4014,7 @@ Optional EVENT is the location for the menu."
 
 (defun custom-group-save (widget)
   "Save all modified group members."
-  (dolist (child (children (widget-get widget :children)))
+  (dolist (child (widget-get widget :children))
     (when (memq (widget-get child :custom-state) '(modified set))
       (widget-apply child :custom-save))))