aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-11-19 18:43:35 +0000
committerRichard M. Stallman1998-11-19 18:43:35 +0000
commit6c3bfd2d92d64f8c1c028f383ff950288441b99e (patch)
treef3397b750df5c684dda50abb5825a888b32cc060
parente5bb8a8cd802d0a3f7e61c29411a7fb2392634f4 (diff)
downloademacs-6c3bfd2d92d64f8c1c028f383ff950288441b99e.tar.gz
emacs-6c3bfd2d92d64f8c1c028f383ff950288441b99e.zip
(find-function-regexp): Handle skeletons.
-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 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
60definition. Note it must contain a `%s' at the place where `format' 60definition. Note it must contain a `%s' at the place where `format'
61should insert the function name. The default value avoids `defconst', 61should insert the function name. The default value avoids `defconst',