Mercurial > emacs
changeset 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 | 1160d327dbdd |
children | 0149b308ce83 |
files | lisp/ChangeLog lisp/cus-edit.el |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Jul 30 05:33:47 2007 +0000 +++ b/lisp/ChangeLog Mon Jul 30 05:33:55 2007 +0000 @@ -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.
--- 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))))