]> git.eshelyaron.com Git - emacs.git/commitdiff
* wid-edit.el (widget-radio-button-notify): Don't pass `widget'
authorMasatake YAMATO <jet@gyve.org>
Tue, 18 May 2004 13:38:59 +0000 (13:38 +0000)
committerMasatake YAMATO <jet@gyve.org>
Tue, 18 May 2004 13:38:59 +0000 (13:38 +0000)
to widget-apply. :action method assumes 2 arguments, not 3.

lisp/ChangeLog
lisp/wid-edit.el

index 5cc94e6aae6fd755d5eae94547f70657c73b7b53..8e2b74d5b6073745e3ec065c0f1d7a3361617062 100644 (file)
@@ -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
index 33f1f06ba9a40385bf0bac0d1cdcd0e50d30b988..b1a89e4fbef2804a7aed167db37ab10ac82d63c5 100644 (file)
@@ -2294,7 +2294,7 @@ Return an alist of (TYPE MATCH)."
 
 (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.