Function: elp-results-jump-to-definition

elp-results-jump-to-definition is an interactive and byte-compiled function defined in elp.el.gz.

Signature

(elp-results-jump-to-definition &optional EVENT)

Documentation

Jump to the definition of the function at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/elp.el.gz
(defun elp-results-jump-to-definition (&optional event)
  "Jump to the definition of the function at point."
  (interactive (list last-nonmenu-event))
  (if event (posn-set-point (event-end event)))
  (find-function (get-text-property (point) 'elp-symname)))