Function: find-function-on-key
find-function-on-key is an autoloaded, interactive and byte-compiled
function defined in find-func.el.gz.
Signature
(find-function-on-key KEY)
Documentation
Find the function that KEY invokes. KEY is a string.
Set mark before moving, if the buffer already existed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
;;;###autoload
(defun find-function-on-key (key)
"Find the function that KEY invokes. KEY is a string.
Set mark before moving, if the buffer already existed."
(interactive "kFind function on key: ")
(find-function-on-key-do-it key #'find-function))