]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/find-func.el
3b103e09bca7f0b04ef7b38522c0bcc637ee5b92
[gnu-emacs] / lisp / emacs-lisp / find-func.el
1 ;;; find-func.el --- find the definition of the Emacs Lisp function near point -*- lexical-binding:t -*-
2
3 ;; Copyright (C) 1997, 1999, 2001-2015 Free Software Foundation, Inc.
4
5 ;; Author: Jens Petersen <petersen@kurims.kyoto-u.ac.jp>
6 ;; Maintainer: petersen@kurims.kyoto-u.ac.jp
7 ;; Keywords: emacs-lisp, functions, variables
8 ;; Created: 97/07/25
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26 ;;
27 ;; The funniest thing about this is that I can't imagine why a package
28 ;; so obviously useful as this hasn't been written before!!
29 ;; ;;; find-func
30 ;; (find-function-setup-keys)
31 ;;
32 ;; or just:
33 ;;
34 ;; (load "find-func")
35 ;;
36 ;; if you don't like the given keybindings and away you go! It does
37 ;; pretty much what you would expect, putting the cursor at the
38 ;; definition of the function or variable at point.
39 ;;
40 ;; The code started out from `describe-function', `describe-key'
41 ;; ("help.el") and `fff-find-loaded-emacs-lisp-function' (Noah Friedman's
42 ;; "fff.el").
43
44 ;;; Code:
45
46 ;;; User variables:
47
48 (defgroup find-function nil
49 "Finds the definition of the Emacs Lisp symbol near point."
50 ;; :prefix "find-function"
51 :group 'lisp)
52
53 (defconst find-function-space-re "\\(?:\\s-\\|\n\\|;.*\n\\)+")
54
55 (defcustom find-function-regexp
56 ;; Match things like (defun foo ...), (defmacro foo ...),
57 ;; (define-skeleton foo ...), (define-generic-mode 'foo ...),
58 ;; (define-derived-mode foo ...), (define-minor-mode foo)
59 (concat
60 "^\\s-*(\\(def\\(ine-skeleton\\|ine-generic-mode\\|ine-derived-mode\\|\
61 ine\\(?:-global\\)?-minor-mode\\|ine-compilation-mode\\|un-cvs-mode\\|\
62 foo\\|\\(?:[^icfgv]\\|g[^r]\\)\\(\\w\\|\\s_\\)+\\*?\\)\\|easy-mmode-define-[a-z-]+\\|easy-menu-define\\|\
63 menu-bar-make-toggle\\)"
64 find-function-space-re
65 "\\('\\|\(quote \\)?%s\\(\\s-\\|$\\|\(\\|\)\\)")
66 "The regexp used by `find-function' to search for a function definition.
67 Note it must contain a `%s' at the place where `format'
68 should insert the function name. The default value avoids `defconst',
69 `defgroup', `defvar', `defface'.
70
71 Please send improvements and fixes to the maintainer."
72 :type 'regexp
73 :group 'find-function
74 :version "21.1")
75
76 (defcustom find-variable-regexp
77 (concat
78 "^\\s-*(\\(def[^fumag]\\(\\w\\|\\s_\\)+\\*?\\|\
79 easy-mmode-def\\(map\\|syntax\\)\\|easy-menu-define\\)"
80 find-function-space-re
81 "%s\\(\\s-\\|$\\)")
82 "The regexp used by `find-variable' to search for a variable definition.
83 Note it must contain a `%s' at the place where `format'
84 should insert the variable name. The default value
85 avoids `defun', `defmacro', `defalias', `defadvice', `defgroup', `defface'.
86
87 Please send improvements and fixes to the maintainer."
88 :type 'regexp
89 :group 'find-function
90 :version "21.1")
91
92 (defcustom find-face-regexp
93 (concat"^\\s-*(defface" find-function-space-re "%s\\(\\s-\\|$\\)")
94 "The regexp used by `find-face' to search for a face definition.
95 Note it must contain a `%s' at the place where `format'
96 should insert the face name.
97
98 Please send improvements and fixes to the maintainer."
99 :type 'regexp
100 :group 'find-function
101 :version "22.1")
102
103 (defcustom find-feature-regexp
104 (concat ";;; Code:")
105 "The regexp used by `xref-find-definitions' when searching for a feature definition.
106 Note it must contain a `%s' at the place where `format'
107 should insert the feature name."
108 ;; We search for ";;; Code" rather than (feature '%s) because the
109 ;; former is near the start of the code, and the latter is very
110 ;; uninteresting. If the regexp is not found, just goes to
111 ;; (point-min), which is acceptable in this case.
112 :type 'regexp
113 :group 'xref
114 :version "25.0")
115
116 (defcustom find-alias-regexp
117 "(defalias +'%s"
118 "The regexp used by `xref-find-definitions' to search for an alias definition.
119 Note it must contain a `%s' at the place where `format'
120 should insert the feature name."
121 :type 'regexp
122 :group 'xref
123 :version "25.0")
124
125 (defvar find-function-regexp-alist
126 '((nil . find-function-regexp)
127 (defvar . find-variable-regexp)
128 (defface . find-face-regexp)
129 (feature . find-feature-regexp)
130 (defalias . find-alias-regexp))
131 "Alist mapping definition types into regexp variables.
132 Each regexp variable's value should actually be a format string
133 to be used to substitute the desired symbol name into the regexp.
134 Instead of regexp variable, types can be mapped to functions as well,
135 in which case the function is called with one argument (the object
136 we're looking for) and it should search for it.")
137 (put 'find-function-regexp-alist 'risky-local-variable t)
138
139 (defcustom find-function-source-path nil
140 "The default list of directories where `find-function' searches.
141
142 If this variable is nil then `find-function' searches `load-path' by
143 default."
144 :type '(repeat directory)
145 :group 'find-function)
146
147 (defcustom find-function-recenter-line 1
148 "The window line-number from which to start displaying a symbol definition.
149 A value of nil implies center the beginning of the definition.
150 See `find-function' and `find-variable'."
151 :type '(choice (const :tag "Center" nil)
152 integer)
153 :group 'find-function
154 :version "20.3")
155
156 (defcustom find-function-after-hook nil
157 "Hook run after finding symbol definition.
158
159 See the functions `find-function' and `find-variable'."
160 :type 'hook
161 :group 'find-function
162 :version "20.3")
163
164 ;;; Functions:
165
166 (defun find-library-suffixes ()
167 (let ((suffixes nil))
168 (dolist (suffix (get-load-suffixes) (nreverse suffixes))
169 (unless (string-match "elc" suffix) (push suffix suffixes)))))
170
171 (defun find-library--load-name (library)
172 (let ((name library))
173 (dolist (dir load-path)
174 (let ((rel (file-relative-name library dir)))
175 (if (and (not (string-match "\\`\\.\\./" rel))
176 (< (length rel) (length name)))
177 (setq name rel))))
178 (unless (equal name library) name)))
179
180 (defun find-library-name (library)
181 "Return the absolute file name of the Emacs Lisp source of LIBRARY.
182 LIBRARY should be a string (the name of the library)."
183 ;; If the library is byte-compiled, try to find a source library by
184 ;; the same name.
185 (if (string-match "\\.el\\(c\\(\\..*\\)?\\)\\'" library)
186 (setq library (replace-match "" t t library)))
187 (or
188 (locate-file library
189 (or find-function-source-path load-path)
190 (find-library-suffixes))
191 (locate-file library
192 (or find-function-source-path load-path)
193 load-file-rep-suffixes)
194 (when (file-name-absolute-p library)
195 (let ((rel (find-library--load-name library)))
196 (when rel
197 (or
198 (locate-file rel
199 (or find-function-source-path load-path)
200 (find-library-suffixes))
201 (locate-file rel
202 (or find-function-source-path load-path)
203 load-file-rep-suffixes)))))
204 (error "Can't find library %s" library)))
205
206 (defvar find-function-C-source-directory
207 (let ((dir (expand-file-name "src" source-directory)))
208 (if (file-accessible-directory-p dir) dir))
209 "Directory where the C source files of Emacs can be found.
210 If nil, do not try to find the source code of functions and variables
211 defined in C.")
212
213 (declare-function ad-get-advice-info "advice" (function))
214
215 (defun find-function-advised-original (func)
216 "Return the original function definition of an advised function FUNC.
217 If FUNC is not a symbol, return it. Else, if it's not advised,
218 return the symbol's function definition."
219 (or (and (symbolp func)
220 (featurep 'nadvice)
221 (let ((ofunc (advice--symbol-function func)))
222 (if (advice--p ofunc)
223 (advice--cd*r ofunc)
224 ofunc)))
225 func))
226
227 (defun find-function-C-source (fun-or-var file type)
228 "Find the source location where FUN-OR-VAR is defined in FILE.
229 TYPE should be nil to find a function, or `defvar' to find a variable."
230 (let ((dir (or find-function-C-source-directory
231 (read-directory-name "Emacs C source dir: " nil nil t))))
232 (setq file (expand-file-name file dir))
233 (if (file-readable-p file)
234 (if (null find-function-C-source-directory)
235 (setq find-function-C-source-directory dir))
236 (error "The C source file %s is not available"
237 (file-name-nondirectory file))))
238 (unless type
239 ;; Either or both an alias and its target might be advised.
240 (setq fun-or-var (find-function-advised-original
241 (indirect-function
242 (find-function-advised-original fun-or-var)))))
243 (with-current-buffer (find-file-noselect file)
244 (goto-char (point-min))
245 (unless (re-search-forward
246 (if type
247 (concat "DEFVAR[A-Z_]*[ \t\n]*([ \t\n]*\""
248 (regexp-quote (symbol-name fun-or-var))
249 "\"")
250 (concat "DEFUN[ \t\n]*([ \t\n]*\""
251 (regexp-quote (subr-name (advice--cd*r fun-or-var)))
252 "\""))
253 nil t)
254 (error "Can't find source for %s" fun-or-var))
255 (cons (current-buffer) (match-beginning 0))))
256
257 ;;;###autoload
258 (defun find-library (library)
259 "Find the Emacs Lisp source of LIBRARY.
260 LIBRARY should be a string (the name of the library)."
261 (interactive
262 (let* ((dirs (or find-function-source-path load-path))
263 (suffixes (find-library-suffixes))
264 (table (apply-partially 'locate-file-completion-table
265 dirs suffixes))
266 (def (if (eq (function-called-at-point) 'require)
267 ;; `function-called-at-point' may return 'require
268 ;; with `point' anywhere on this line. So wrap the
269 ;; `save-excursion' below in a `condition-case' to
270 ;; avoid reporting a scan-error here.
271 (condition-case nil
272 (save-excursion
273 (backward-up-list)
274 (forward-char)
275 (forward-sexp 2)
276 (thing-at-point 'symbol))
277 (error nil))
278 (thing-at-point 'symbol))))
279 (when (and def (not (test-completion def table)))
280 (setq def nil))
281 (list
282 (completing-read (if def (format "Library name (default %s): " def)
283 "Library name: ")
284 table nil nil nil nil def))))
285 (let ((buf (find-file-noselect (find-library-name library))))
286 (condition-case nil (switch-to-buffer buf) (error (pop-to-buffer buf)))))
287
288 ;;;###autoload
289 (defun find-function-search-for-symbol (symbol type library)
290 "Search for SYMBOL's definition of type TYPE in LIBRARY.
291 Visit the library in a buffer, and return a cons cell (BUFFER . POSITION),
292 or just (BUFFER . nil) if the definition can't be found in the file.
293
294 If TYPE is nil, look for a function definition.
295 Otherwise, TYPE specifies the kind of definition,
296 and it is interpreted via `find-function-regexp-alist'.
297 The search is done in the source for library LIBRARY."
298 (if (null library)
299 (error "Don't know where ‘%s’ is defined" symbol))
300 ;; Some functions are defined as part of the construct
301 ;; that defines something else.
302 (while (and (symbolp symbol) (get symbol 'definition-name))
303 (setq symbol (get symbol 'definition-name)))
304 (if (string-match "\\`src/\\(.*\\.\\(c\\|m\\)\\)\\'" library)
305 (find-function-C-source symbol (match-string 1 library) type)
306 (when (string-match "\\.el\\(c\\)\\'" library)
307 (setq library (substring library 0 (match-beginning 1))))
308 ;; Strip extension from .emacs.el to make sure symbol is searched in
309 ;; .emacs too.
310 (when (string-match "\\.emacs\\(.el\\)" library)
311 (setq library (substring library 0 (match-beginning 1))))
312 (let* ((filename (find-library-name library))
313 (regexp-symbol (cdr (assq type find-function-regexp-alist))))
314 (with-current-buffer (find-file-noselect filename)
315 (let ((regexp (if (functionp regexp-symbol) regexp-symbol
316 (format (symbol-value regexp-symbol)
317 ;; Entry for ` (backquote) macro in loaddefs.el,
318 ;; (defalias (quote \`)..., has a \ but
319 ;; (symbol-name symbol) doesn't. Add an
320 ;; optional \ to catch this.
321 (concat "\\\\?"
322 (regexp-quote (symbol-name symbol))))))
323 (case-fold-search))
324 (with-syntax-table emacs-lisp-mode-syntax-table
325 (goto-char (point-min))
326 (if (if (functionp regexp)
327 (funcall regexp symbol)
328 (or (re-search-forward regexp nil t)
329 ;; `regexp' matches definitions using known forms like
330 ;; `defun', or `defvar'. But some functions/variables
331 ;; are defined using special macros (or functions), so
332 ;; if `regexp' can't find the definition, we look for
333 ;; something of the form "(SOMETHING <symbol> ...)".
334 ;; This fails to distinguish function definitions from
335 ;; variable declarations (or even uses thereof), but is
336 ;; a good pragmatic fallback.
337 (re-search-forward
338 (concat "^([^ ]+" find-function-space-re "['(]?"
339 (regexp-quote (symbol-name symbol))
340 "\\_>")
341 nil t)))
342 (progn
343 (beginning-of-line)
344 (cons (current-buffer) (point)))
345 (cons (current-buffer) nil))))))))
346
347 (defun find-function-library (function &optional lisp-only verbose)
348 "Return the pair (ORIG-FUNCTION . LIBRARY) for FUNCTION.
349
350 ORIG-FUNCTION is the original name, after removing all advice and
351 resolving aliases. LIBRARY is an absolute file name, a relative
352 file name inside the C sources directory, or a name of an
353 autoloaded feature.
354
355 If ORIG-FUNCTION is a built-in function and LISP-ONLY is non-nil,
356 signal an error.
357
358 If VERBOSE is non-nil, and FUNCTION is an alias, display a
359 message about the whole chain of aliases."
360 (let ((def (if (symbolp function)
361 (find-function-advised-original function)))
362 aliases)
363 ;; FIXME for completeness, it might be nice to print something like:
364 ;; foo (which is advised), which is an alias for bar (which is advised).
365 (while (and def (symbolp def))
366 (or (eq def function)
367 (not verbose)
368 (setq aliases (if aliases
369 (concat aliases
370 (format ", which is an alias for ‘%s’"
371 (symbol-name def)))
372 (format "‘%s’ is an alias for ‘%s’"
373 function (symbol-name def)))))
374 (setq function (find-function-advised-original function)
375 def (find-function-advised-original function)))
376 (if aliases
377 (message "%s" aliases))
378 (cons function
379 (cond
380 ((autoloadp def) (nth 1 def))
381 ((subrp def)
382 (if lisp-only
383 (error "%s is a built-in function" function))
384 (help-C-file-name def 'subr))
385 ((symbol-file function 'defun))))))
386
387 ;;;###autoload
388 (defun find-function-noselect (function &optional lisp-only)
389 "Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION.
390
391 Finds the source file containing the definition of FUNCTION
392 in a buffer and the point of the definition. The buffer is
393 not selected. If the function definition can't be found in
394 the buffer, returns (BUFFER).
395
396 If FUNCTION is a built-in function, this function normally
397 attempts to find it in the Emacs C sources; however, if LISP-ONLY
398 is non-nil, signal an error instead.
399
400 If the file where FUNCTION is defined is not known, then it is
401 searched for in `find-function-source-path' if non-nil, otherwise
402 in `load-path'."
403 (if (not function)
404 (error "You didn't specify a function"))
405 (let ((func-lib (find-function-library function lisp-only t)))
406 (find-function-search-for-symbol (car func-lib) nil (cdr func-lib))))
407
408 (defun find-function-read (&optional type)
409 "Read and return an interned symbol, defaulting to the one near point.
410
411 If TYPE is nil, insist on a symbol with a function definition.
412 Otherwise TYPE should be `defvar' or `defface'.
413 If TYPE is nil, defaults using `function-called-at-point',
414 otherwise uses `variable-at-point'."
415 (let* ((symb1 (cond ((null type) (function-called-at-point))
416 ((eq type 'defvar) (variable-at-point))
417 (t (variable-at-point t))))
418 (symb (unless (eq symb1 0) symb1))
419 (predicate (cdr (assq type '((nil . fboundp)
420 (defvar . boundp)
421 (defface . facep)))))
422 (prompt-type (cdr (assq type '((nil . "function")
423 (defvar . "variable")
424 (defface . "face")))))
425 (prompt (concat "Find " prompt-type
426 (and symb (format " (default %s)" symb))
427 ": "))
428 (enable-recursive-minibuffers t))
429 (list (intern (completing-read
430 prompt obarray predicate
431 t nil nil (and symb (symbol-name symb)))))))
432
433 (defun find-function-do-it (symbol type switch-fn)
434 "Find Emacs Lisp SYMBOL in a buffer and display it.
435 TYPE is nil to search for a function definition,
436 or else `defvar' or `defface'.
437
438 The variable `find-function-recenter-line' controls how
439 to recenter the display. SWITCH-FN is the function to call
440 to display and select the buffer.
441 See also `find-function-after-hook'.
442
443 Set mark before moving, if the buffer already existed."
444 (let* ((orig-point (point))
445 (orig-buffers (buffer-list))
446 (buffer-point (save-excursion
447 (find-definition-noselect symbol type)))
448 (new-buf (car buffer-point))
449 (new-point (cdr buffer-point)))
450 (when buffer-point
451 (when (memq new-buf orig-buffers)
452 (push-mark orig-point))
453 (funcall switch-fn new-buf)
454 (when new-point (goto-char new-point))
455 (recenter find-function-recenter-line)
456 (run-hooks 'find-function-after-hook))))
457
458 ;;;###autoload
459 (defun find-function (function)
460 "Find the definition of the FUNCTION near point.
461
462 Finds the source file containing the definition of the function
463 near point (selected by `function-called-at-point') in a buffer and
464 places point before the definition.
465 Set mark before moving, if the buffer already existed.
466
467 The library where FUNCTION is defined is searched for in
468 `find-function-source-path', if non-nil, otherwise in `load-path'.
469 See also `find-function-recenter-line' and `find-function-after-hook'."
470 (interactive (find-function-read))
471 (find-function-do-it function nil 'switch-to-buffer))
472
473 ;;;###autoload
474 (defun find-function-other-window (function)
475 "Find, in another window, the definition of FUNCTION near point.
476
477 See `find-function' for more details."
478 (interactive (find-function-read))
479 (find-function-do-it function nil 'switch-to-buffer-other-window))
480
481 ;;;###autoload
482 (defun find-function-other-frame (function)
483 "Find, in another frame, the definition of FUNCTION near point.
484
485 See `find-function' for more details."
486 (interactive (find-function-read))
487 (find-function-do-it function nil 'switch-to-buffer-other-frame))
488
489 ;;;###autoload
490 (defun find-variable-noselect (variable &optional file)
491 "Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE.
492
493 Finds the library containing the definition of VARIABLE in a buffer and
494 the point of the definition. The buffer is not selected.
495 If the variable's definition can't be found in the buffer, return (BUFFER).
496
497 The library where VARIABLE is defined is searched for in FILE or
498 `find-function-source-path', if non-nil, otherwise in `load-path'."
499 (if (not variable)
500 (error "You didn't specify a variable")
501 (let ((library (or file
502 (symbol-file variable 'defvar)
503 (help-C-file-name variable 'var))))
504 (find-function-search-for-symbol variable 'defvar library))))
505
506 ;;;###autoload
507 (defun find-variable (variable)
508 "Find the definition of the VARIABLE at or before point.
509
510 Finds the library containing the definition of the variable
511 near point (selected by `variable-at-point') in a buffer and
512 places point before the definition.
513
514 Set mark before moving, if the buffer already existed.
515
516 The library where VARIABLE is defined is searched for in
517 `find-function-source-path', if non-nil, otherwise in `load-path'.
518 See also `find-function-recenter-line' and `find-function-after-hook'."
519 (interactive (find-function-read 'defvar))
520 (find-function-do-it variable 'defvar 'switch-to-buffer))
521
522 ;;;###autoload
523 (defun find-variable-other-window (variable)
524 "Find, in another window, the definition of VARIABLE near point.
525
526 See `find-variable' for more details."
527 (interactive (find-function-read 'defvar))
528 (find-function-do-it variable 'defvar 'switch-to-buffer-other-window))
529
530 ;;;###autoload
531 (defun find-variable-other-frame (variable)
532 "Find, in another frame, the definition of VARIABLE near point.
533
534 See `find-variable' for more details."
535 (interactive (find-function-read 'defvar))
536 (find-function-do-it variable 'defvar 'switch-to-buffer-other-frame))
537
538 ;;;###autoload
539 (defun find-definition-noselect (symbol type &optional file)
540 "Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL.
541 If the definition can't be found in the buffer, return (BUFFER).
542 TYPE says what type of definition: nil for a function, `defvar' for a
543 variable, `defface' for a face. This function does not switch to the
544 buffer nor display it.
545
546 The library where SYMBOL is defined is searched for in FILE or
547 `find-function-source-path', if non-nil, otherwise in `load-path'."
548 (cond
549 ((not symbol)
550 (error "You didn't specify a symbol"))
551 ((null type)
552 (find-function-noselect symbol))
553 ((eq type 'defvar)
554 (find-variable-noselect symbol file))
555 (t
556 (let ((library (or file (symbol-file symbol type))))
557 (find-function-search-for-symbol symbol type library)))))
558
559 ;; For symmetry, this should be called find-face; but some programs
560 ;; assume that, if that name is defined, it means something else.
561 ;;;###autoload
562 (defun find-face-definition (face)
563 "Find the definition of FACE. FACE defaults to the name near point.
564
565 Finds the Emacs Lisp library containing the definition of the face
566 near point (selected by `variable-at-point') in a buffer and
567 places point before the definition.
568
569 Set mark before moving, if the buffer already existed.
570
571 The library where FACE is defined is searched for in
572 `find-function-source-path', if non-nil, otherwise in `load-path'.
573 See also `find-function-recenter-line' and `find-function-after-hook'."
574 (interactive (find-function-read 'defface))
575 (find-function-do-it face 'defface 'switch-to-buffer))
576
577 (defun find-function-on-key-do-it (key find-fn)
578 "Find the function that KEY invokes. KEY is a string.
579 Set mark before moving, if the buffer already existed.
580
581 FIND-FN is the function to call to navigate to the function."
582 (let (defn)
583 (save-excursion
584 (let* ((event (and (eventp key) (aref key 0))) ; Null event OK below.
585 (start (event-start event))
586 (modifiers (event-modifiers event))
587 (window (and (or (memq 'click modifiers) (memq 'down modifiers)
588 (memq 'drag modifiers))
589 (posn-window start))))
590 ;; For a mouse button event, go to the button it applies to
591 ;; to get the right key bindings. And go to the right place
592 ;; in case the keymap depends on where you clicked.
593 (when (windowp window)
594 (set-buffer (window-buffer window))
595 (goto-char (posn-point start)))
596 (setq defn (key-binding key))))
597 (let ((key-desc (key-description key)))
598 (if (or (null defn) (integerp defn))
599 (message "%s is unbound" key-desc)
600 (if (consp defn)
601 (message "%s runs %s" key-desc (prin1-to-string defn))
602 (funcall find-fn defn))))))
603
604 ;;;###autoload
605 (defun find-function-on-key (key)
606 "Find the function that KEY invokes. KEY is a string.
607 Set mark before moving, if the buffer already existed."
608 (interactive "kFind function on key: ")
609 (find-function-on-key-do-it key #'find-function))
610
611 ;;;###autoload
612 (defun find-function-on-key-other-window (key)
613 "Find, in the other window, the function that KEY invokes.
614 See `find-function-on-key'."
615 (interactive "kFind function on key: ")
616 (find-function-on-key-do-it key #'find-function-other-window))
617
618 ;;;###autoload
619 (defun find-function-on-key-other-frame (key)
620 "Find, in the other frame, the function that KEY invokes.
621 See `find-function-on-key'."
622 (interactive "kFind function on key: ")
623 (find-function-on-key-do-it key #'find-function-other-frame))
624
625 ;;;###autoload
626 (defun find-function-at-point ()
627 "Find directly the function at point in the other window."
628 (interactive)
629 (let ((symb (function-called-at-point)))
630 (when symb
631 (find-function-other-window symb))))
632
633 ;;;###autoload
634 (defun find-variable-at-point ()
635 "Find directly the variable at point in the other window."
636 (interactive)
637 (let ((symb (variable-at-point)))
638 (when (and symb (not (equal symb 0)))
639 (find-variable-other-window symb))))
640
641 ;;;###autoload
642 (defun find-function-setup-keys ()
643 "Define some key bindings for the find-function family of functions."
644 (define-key ctl-x-map "F" 'find-function)
645 (define-key ctl-x-4-map "F" 'find-function-other-window)
646 (define-key ctl-x-5-map "F" 'find-function-other-frame)
647 (define-key ctl-x-map "K" 'find-function-on-key)
648 (define-key ctl-x-4-map "K" 'find-function-on-key-other-window)
649 (define-key ctl-x-5-map "K" 'find-function-on-key-other-frame)
650 (define-key ctl-x-map "V" 'find-variable)
651 (define-key ctl-x-4-map "V" 'find-variable-other-window)
652 (define-key ctl-x-5-map "V" 'find-variable-other-frame))
653
654 (provide 'find-func)
655
656 ;;; find-func.el ends here