Function: finder-goto-xref
finder-goto-xref is a byte-compiled function defined in finder.el.gz.
Signature
(finder-goto-xref BUTTON)
Documentation
Jump to a Lisp file for the BUTTON at point.
Source Code
;; Defined in /usr/src/emacs/lisp/finder.el.gz
(defun finder-goto-xref (button)
"Jump to a Lisp file for the BUTTON at point."
(let* ((file (button-get button 'xref))
(lib (locate-library file)))
(if lib (finder-commentary lib)
(message "Unable to locate `%s'" file))))