summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/find-func.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>1997-10-25 13:32:06 +0000
committerDave Love <fx@gnu.org>1997-10-25 13:32:06 +0000
commitb07745ec41f0170ffb0b31351148718effd30fa5 (patch)
treea50d86a1c2d96d7e39475fc192c508e31bbffa73 /lisp/emacs-lisp/find-func.el
parentfffee8be90e8cce92316e4f026285b23d9b92ffe (diff)
downloademacs-b07745ec41f0170ffb0b31351148718effd30fa5.tar.gz
emacs-b07745ec41f0170ffb0b31351148718effd30fa5.tar.bz2
emacs-b07745ec41f0170ffb0b31351148718effd30fa5.zip
(find-function, find-function-other-window, find-function-other-frame,
find-function-on-key): Add autoload cookies.
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r--lisp/emacs-lisp/find-func.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index 3eefb55b4cd..40879895df3 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -193,6 +193,7 @@ Point is saved if FUNCTION is in the current buffer."
(goto-char (elt buffer-point 1))
(recenter 0)))))
+;;;###autoload
(defun find-function (function &optional path)
"Find the definition of the function near point in the current window.
@@ -206,6 +207,7 @@ defined is searched in PATH instead of `load-path'"
(interactive (find-function-read-function))
(find-function-do-it function path 'switch-to-buffer))
+;;;###autoload
(defun find-function-other-window (function &optional path)
"Find the definition of the function near point in the other window.
@@ -219,6 +221,7 @@ defined is searched in PATH instead of `load-path'"
(interactive (find-function-read-function))
(find-function-do-it function path 'switch-to-buffer-other-window))
+;;;###autoload
(defun find-function-other-frame (function &optional path)
"Find the definition of the function near point in the another frame.
@@ -232,6 +235,7 @@ defined is searched in PATH instead of `load-path'"
(interactive (find-function-read-function))
(find-function-do-it function path 'switch-to-buffer-other-frame))
+;;;###autoload
(defun find-function-on-key (key)
"Find the function that KEY invokes. KEY is a string.
Point is saved if FUNCTION is in the current buffer."