aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1998-11-19 18:43:35 +0000
committerRichard M. Stallman <[email protected]>1998-11-19 18:43:35 +0000
commit6c3bfd2d92d64f8c1c028f383ff950288441b99e (patch)
treef3397b750df5c684dda50abb5825a888b32cc060 /lisp
parente5bb8a8cd802d0a3f7e61c29411a7fb2392634f4 (diff)
(find-function-regexp): Handle skeletons.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/find-func.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index dbe6b6a672..3cc417258e 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -55,7 +55,7 @@
:group 'lisp)
(defcustom find-function-regexp
- "^\\s-*(def[^cgv\W]\\w+\\*?\\s-+%s\\(\\s-\\|$\\)"
+ "^\\s-*(def\\(ine-skeleton\\|[^cgv\W]\\w+\\*?\\)\\s-+%s\\(\\s-\\|$\\)"
"The regexp used by `find-function' to search for a function
definition. Note it must contain a `%s' at the place where `format'
should insert the function name. The default value avoids `defconst',