diff options
| -rw-r--r-- | lisp/emacs-lisp/find-func.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 0a2717dfc67..c5116fc1ba9 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el | |||
| @@ -626,14 +626,17 @@ Set mark before moving, if the buffer already existed." | |||
| 626 | 626 | ||
| 627 | ;;;###autoload | 627 | ;;;###autoload |
| 628 | (defun find-function (function) | 628 | (defun find-function (function) |
| 629 | "Find the definition of the FUNCTION near point. | 629 | "Find the definition of the Emacs Lisp FUNCTION near point. |
| 630 | 630 | ||
| 631 | Finds the source file containing the definition of the function | 631 | Finds the source file containing the definition of the function |
| 632 | near point (selected by `function-called-at-point') in a buffer and | 632 | near point (selected by `function-called-at-point') in a buffer and |
| 633 | places point before the definition. | 633 | places point before the definition. |
| 634 | Set mark before moving, if the buffer already existed. | 634 | Set mark before moving, if the buffer already existed. |
| 635 | 635 | ||
| 636 | See also `find-function-recenter-line' and `find-function-after-hook'." | 636 | See also `find-function-recenter-line' and `find-function-after-hook'. |
| 637 | |||
| 638 | Use \\[xref-find-definitions] to find definitions of functions and variables | ||
| 639 | that are not part of Emacs." | ||
| 637 | (interactive (find-function-read)) | 640 | (interactive (find-function-read)) |
| 638 | (find-function-do-it function nil 'switch-to-buffer)) | 641 | (find-function-do-it function nil 'switch-to-buffer)) |
| 639 | 642 | ||