Function: find-function-at-point

find-function-at-point is an autoloaded, interactive and byte-compiled function defined in find-func.el.gz.

Signature

(find-function-at-point)

Documentation

Find directly the function at point in the other window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
;;;###autoload
(defun find-function-at-point ()
  "Find directly the function at point in the other window."
  (interactive)
  (let ((symb (function-called-at-point)))
    (when symb
      (find-function-other-window symb))))