Function: Man-xref-button-action
Man-xref-button-action is a byte-compiled function defined in
man.el.gz.
Signature
(Man-xref-button-action BUTTON)
Source Code
;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-xref-button-action (button)
(let ((target (button-get button 'Man-target-string)))
(funcall
(button-get button 'func)
(cond ((null target)
(button-label button))
((functionp target)
(funcall target (button-start button)))
(t target)))))