1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

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>
This commit is contained in:
Miles Bader 2007-07-30 05:33:55 +00:00
parent 5ef05ae3b2
commit ed8c9cf163
2 changed files with 4 additions and 1 deletions

View 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.

View 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))))