Function: apropos-follow
apropos-follow is an interactive and byte-compiled function defined in
apropos.el.gz.
Signature
(apropos-follow)
Documentation
Invokes any button at point, otherwise invokes the nearest label button.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defun apropos-follow ()
"Invokes any button at point, otherwise invokes the nearest label button."
(interactive nil apropos-mode)
(button-activate
(or (apropos-next-label-button (line-beginning-position))
(error "There is nothing to follow here"))))