changeset 55664:b001dc626000

* wid-edit.el (widget-radio-button-notify): Don't pass `widget' to widget-apply. :action method assumes 2 arguments, not 3.
author Masatake YAMATO <jet@gyve.org>
date Tue, 18 May 2004 13:38:59 +0000
parents 2681959ed181
children 4c204021f2f5
files lisp/ChangeLog lisp/wid-edit.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue May 18 13:36:32 2004 +0000
+++ b/lisp/ChangeLog	Tue May 18 13:38:59 2004 +0000
@@ -1,3 +1,8 @@
+2004-05-18  Masatake YAMATO  <jet@gyve.org>
+
+	* wid-edit.el (widget-radio-button-notify): Don't pass `widget'
+	to widget-apply. :action method assumes 2 arguments, not 3.
+
 2004-05-17  Glenn Morris  <gmorris@ast.cam.ac.uk>
 
 	* progmodes/f90.el (f90-end-block-re, f90-start-block-re): New
--- a/lisp/wid-edit.el	Tue May 18 13:36:32 2004 +0000
+++ b/lisp/wid-edit.el	Tue May 18 13:38:59 2004 +0000
@@ -2294,7 +2294,7 @@
 
 (defun widget-radio-button-notify (widget child &optional event)
   ;; Tell daddy.
-  (widget-apply (widget-get widget :parent) :action widget event))
+  (widget-apply (widget-get widget :parent) :action event))
 
 ;;; The `radio-button-choice' Widget.