aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-08-29 18:15:29 +0000
committerRichard M. Stallman1999-08-29 18:15:29 +0000
commit848e837103d40ba1bbcefa500fa000f6f4c9364a (patch)
treef847bd6c0cc4d184f91be6bc3b9f2bcb0b6121a4
parent8d6ebf2e8b624b1bdc87e5c89c8043a0ea7d5864 (diff)
downloademacs-848e837103d40ba1bbcefa500fa000f6f4c9364a.tar.gz
emacs-848e837103d40ba1bbcefa500fa000f6f4c9364a.zip
(find-function-regexp): Allow a ) or ( to end a function name.
-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 3ae98c08a39..e7607494d04 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -60,7 +60,7 @@
60 ;; (define-derived-mode foo ...), (easy-mmode-define-minor-mode foo) 60 ;; (define-derived-mode foo ...), (easy-mmode-define-minor-mode foo)
61 "^\\s-*(\\(def\\(ine-skeleton\\|ine-generic-mode\\|ine-derived-mode\\|\ 61 "^\\s-*(\\(def\\(ine-skeleton\\|ine-generic-mode\\|ine-derived-mode\\|\
62\[^cgv\W]\\w+\\*?\\)\\|easy-mmode-define-minor-mode\\)\\s-+'?\ 62\[^cgv\W]\\w+\\*?\\)\\|easy-mmode-define-minor-mode\\)\\s-+'?\
63%s\\(\\s-\\|$\\)" 63%s\\(\\s-\\|$\\|\(\\|\)\\)"
64 "The regexp used by `find-function' to search for a function definition. 64 "The regexp used by `find-function' to search for a function definition.
65Note it must contain a `%s' at the place where `format' 65Note it must contain a `%s' at the place where `format'
66should insert the function name. The default value avoids `defconst', 66should insert the function name. The default value avoids `defconst',