aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1997-10-25 13:32:06 +0000
committerDave Love1997-10-25 13:32:06 +0000
commitb07745ec41f0170ffb0b31351148718effd30fa5 (patch)
treea50d86a1c2d96d7e39475fc192c508e31bbffa73
parentfffee8be90e8cce92316e4f026285b23d9b92ffe (diff)
downloademacs-b07745ec41f0170ffb0b31351148718effd30fa5.tar.gz
emacs-b07745ec41f0170ffb0b31351148718effd30fa5.zip
(find-function, find-function-other-window, find-function-other-frame,
find-function-on-key): Add autoload cookies.
-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."
193 (goto-char (elt buffer-point 1)) 193 (goto-char (elt buffer-point 1))
194 (recenter 0))))) 194 (recenter 0)))))
195 195
196;;;###autoload
196(defun find-function (function &optional path) 197(defun find-function (function &optional path)
197 "Find the definition of the function near point in the current window. 198 "Find the definition of the function near point in the current window.
198 199
@@ -206,6 +207,7 @@ defined is searched in PATH instead of `load-path'"
206 (interactive (find-function-read-function)) 207 (interactive (find-function-read-function))
207 (find-function-do-it function path 'switch-to-buffer)) 208 (find-function-do-it function path 'switch-to-buffer))
208 209
210;;;###autoload
209(defun find-function-other-window (function &optional path) 211(defun find-function-other-window (function &optional path)
210 "Find the definition of the function near point in the other window. 212 "Find the definition of the function near point in the other window.
211 213
@@ -219,6 +221,7 @@ defined is searched in PATH instead of `load-path'"
219 (interactive (find-function-read-function)) 221 (interactive (find-function-read-function))
220 (find-function-do-it function path 'switch-to-buffer-other-window)) 222 (find-function-do-it function path 'switch-to-buffer-other-window))
221 223
224;;;###autoload
222(defun find-function-other-frame (function &optional path) 225(defun find-function-other-frame (function &optional path)
223 "Find the definition of the function near point in the another frame. 226 "Find the definition of the function near point in the another frame.
224 227
@@ -232,6 +235,7 @@ defined is searched in PATH instead of `load-path'"
232 (interactive (find-function-read-function)) 235 (interactive (find-function-read-function))
233 (find-function-do-it function path 'switch-to-buffer-other-frame)) 236 (find-function-do-it function path 'switch-to-buffer-other-frame))
234 237
238;;;###autoload
235(defun find-function-on-key (key) 239(defun find-function-on-key (key)
236 "Find the function that KEY invokes. KEY is a string. 240 "Find the function that KEY invokes. KEY is a string.
237Point is saved if FUNCTION is in the current buffer." 241Point is saved if FUNCTION is in the current buffer."