]> git.eshelyaron.com Git - emacs.git/commitdiff
Add some documentation for widget-describe and button-describe
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 7 Aug 2020 11:36:50 +0000 (13:36 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 7 Aug 2020 11:36:56 +0000 (13:36 +0200)
* doc/emacs/help.texi (Key Help): Document button-describe and
widget-describe.

* lisp/button.el (push-button): Mention button-describe.

* lisp/cus-edit.el (Custom-newline): Mention widget-describe (bug#139).

doc/emacs/help.texi
etc/NEWS
lisp/button.el
lisp/cus-edit.el

index 167c32c4d21a0d81223edd8e13d7f1b687fd5cb6..06ad5a583d27e01494031803d00a92b2ce815967 100644 (file)
@@ -220,6 +220,16 @@ documentation string of the command it runs.
 command is not on any key, that means you must use @kbd{M-x} to run
 it.  @kbd{C-h w} runs the command @code{where-is}.
 
+@findex button-describe
+@findex widget-describe
+  Some modes in Emacs use various buttons (@pxref{Buttons,,,elisp, The
+Emacs Lisp Reference Manual}) and widgets
+(@pxref{Introduction,,,widget, Emacs Widgets}) that can be clicked to
+perform some action.  To find out what function is ultimately invoked
+by these buttons, Emacs provides the @code{button-describe} and
+@code{widget-describe} commands, that should be run with point over
+the button.
+
 @node Name Help
 @section Help by Command or Variable Name
 
index 201c0b58cdacdf4e553ee620aae94ddca9d4a46f..dcd8ea6a9b3ceeea42d2dc66a8ce11662f4a4d03 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -123,8 +123,8 @@ horizontal movements now stop at the edge of the board.
 setting the variable 'auto-save-visited-mode' buffer-locally to nil.
 
 ** New commands to describe buttons and widgets have been added.
-'describe-widget' (on a widget) will pop up a help buffer and give a
-description of the properties.  Likewise 'describe-button' does the
+'widget-describe' (on a widget) will pop up a help buffer and give a
+description of the properties.  Likewise 'button-describe' does the
 same for a button.
 
 \f
index 941b9fe720aed4f700919fbd0c73ad960fb6b62c..03ab59b109cc8ce10cea7b5dadc0105d1dc9f0f6 100644 (file)
@@ -464,8 +464,12 @@ see).
 POS defaults to point, except when `push-button' is invoked
 interactively as the result of a mouse-event, in which case, the
 mouse event is used.
+
 If there's no button at POS, do nothing and return nil, otherwise
-return t."
+return t.
+
+To get a description of what function will called when pushing a
+butting, use the `button-describe' command."
   (interactive
    (list (if (integerp last-command-event) (point) last-command-event)))
   (if (and (not (integerp pos)) (eventp pos))
index 1942f25e89146060bb69b24f2cf17a228201cc34..16695967dfab8c678fd33f15e5cae99c1b502b37 100644 (file)
@@ -4841,7 +4841,10 @@ The format is suitable for use with `easy-menu-define'."
   (error "You can't edit this part of the Custom buffer"))
 
 (defun Custom-newline (pos &optional event)
-  "Invoke button at POS, or refuse to allow editing of Custom buffer."
+  "Invoke button at POS, or refuse to allow editing of Custom buffer.
+
+To see what function the widget will call, use the
+`widget-describe' command."
   (interactive "@d")
   (let ((button (get-char-property pos 'button)))
     ;; If there is no button at point, then use the one at the start