diff lisp/cus-edit.el @ 82209:34e4c24e4752

Fix void function definition error in cus-edit.el 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>
author Miles Bader <miles@gnu.org>
date Mon, 30 Jul 2007 05:33:55 +0000
parents 6037be8575c3
children cdb30692dab7 539530fa389c
line wrap: on
line diff
--- a/lisp/cus-edit.el	Mon Jul 30 05:33:47 2007 +0000
+++ b/lisp/cus-edit.el	Mon Jul 30 05:33:55 2007 +0000
@@ -4014,7 +4014,7 @@
 
 (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))))