diff lisp/wid-edit.el @ 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 4c64ee838f41
children 1374d9297422
line wrap: on
line diff
--- 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.