diff options
| author | Richard M. Stallman | 1998-11-19 18:43:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-11-19 18:43:35 +0000 |
| commit | 6c3bfd2d92d64f8c1c028f383ff950288441b99e (patch) | |
| tree | f3397b750df5c684dda50abb5825a888b32cc060 | |
| parent | e5bb8a8cd802d0a3f7e61c29411a7fb2392634f4 (diff) | |
| download | emacs-6c3bfd2d92d64f8c1c028f383ff950288441b99e.tar.gz emacs-6c3bfd2d92d64f8c1c028f383ff950288441b99e.zip | |
(find-function-regexp): Handle skeletons.
| -rw-r--r-- | lisp/emacs-lisp/find-func.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index dbe6b6a672d..3cc417258e0 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el | |||
| @@ -55,7 +55,7 @@ | |||
| 55 | :group 'lisp) | 55 | :group 'lisp) |
| 56 | 56 | ||
| 57 | (defcustom find-function-regexp | 57 | (defcustom find-function-regexp |
| 58 | "^\\s-*(def[^cgv\W]\\w+\\*?\\s-+%s\\(\\s-\\|$\\)" | 58 | "^\\s-*(def\\(ine-skeleton\\|[^cgv\W]\\w+\\*?\\)\\s-+%s\\(\\s-\\|$\\)" |
| 59 | "The regexp used by `find-function' to search for a function | 59 | "The regexp used by `find-function' to search for a function |
| 60 | definition. Note it must contain a `%s' at the place where `format' | 60 | definition. Note it must contain a `%s' at the place where `format' |
| 61 | should insert the function name. The default value avoids `defconst', | 61 | should insert the function name. The default value avoids `defconst', |