# HG changeset patch # User Dave Love # Date 877786326 0 # Node ID c8d4024e07dea260627ff9e34338bba013311476 # Parent add8b7b3a7dacf905145c0d793c63714ff71c50d (find-function, find-function-other-window, find-function-other-frame, find-function-on-key): Add autoload cookies. diff -r add8b7b3a7da -r c8d4024e07de lisp/emacs-lisp/find-func.el --- a/lisp/emacs-lisp/find-func.el Sat Oct 25 13:18:56 1997 +0000 +++ b/lisp/emacs-lisp/find-func.el Sat Oct 25 13:32:06 1997 +0000 @@ -193,6 +193,7 @@ (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 @@ (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 @@ (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 @@ (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."