]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/button.el (button-activate, push-button): Doc fix. (Bug#19628)
authorEli Zaretskii <eliz@gnu.org>
Tue, 20 Jan 2015 18:15:20 +0000 (20:15 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 20 Jan 2015 18:15:20 +0000 (20:15 +0200)
lisp/ChangeLog
lisp/button.el

index 8a3d6570c849a122dcedc654ca84b76d45bfad09..20efe68bff65d429984b975bb07180030ec57fd2 100644 (file)
@@ -1,3 +1,7 @@
+2015-01-20  Eli Zaretskii  <eliz@gnu.org>
+
+       * button.el (button-activate, push-button): Doc fix.  (Bug#19628)
+
 2015-01-16  Samer Masterson  <samer@samertm.com>  (tiny change)
 
        * pcomplete.el (pcomplete-parse-arguments): Parse arguments
index 189a1c23a4dac362042da42f502f5b9ff2d32364..e7602dd705096fa55a44b41f1b96cdc8684f4479 100644 (file)
@@ -224,10 +224,10 @@ changes to a supertype are not reflected in its subtypes)."
          prop val))))
 
 (defun button-activate (button &optional use-mouse-action)
-  "Call BUTTON's action property.
-If USE-MOUSE-ACTION is non-nil, invoke the button's mouse-action
-instead of its normal action; if the button has no mouse-action,
-the normal action is used instead.
+  "Call BUTTON's `action' property.
+If USE-MOUSE-ACTION is non-nil, invoke the button's `mouse-action'
+property instead of `action'; if the button has no `mouse-action',
+the value of `action' is used instead.
 
 The action can either be a marker or a function.  If it's a
 marker then goto it.  Otherwise it it is a function then it is
@@ -429,11 +429,13 @@ instead of starting at the next button."
 (defun push-button (&optional pos use-mouse-action)
   "Perform the action specified by a button at location POS.
 POS may be either a buffer position or a mouse-event.  If
-USE-MOUSE-ACTION is non-nil, invoke the button's mouse-action
-instead of its normal action; if the button has no mouse-action,
-the normal action is used instead.  The action may be either a
-function to call or a marker to display and is invoked using
-`button-activate' (which see).
+USE-MOUSE-ACTION is non-nil, invoke the button's `mouse-action'
+property instead of its `action' property; if the button has no
+`mouse-action', the value of `action' is used instead.
+
+The action in both cases may be either a function to call or a
+marker to display and is invoked using `button-activate' (which
+see).
 
 POS defaults to point, except when `push-button' is invoked
 interactively as the result of a mouse-event, in which case, the