diff options
| author | Richard M. Stallman <rms@gnu.org> | 1999-08-29 18:15:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1999-08-29 18:15:29 +0000 |
| commit | 848e837103d40ba1bbcefa500fa000f6f4c9364a (patch) | |
| tree | f847bd6c0cc4d184f91be6bc3b9f2bcb0b6121a4 | |
| parent | 8d6ebf2e8b624b1bdc87e5c89c8043a0ea7d5864 (diff) | |
| download | emacs-848e837103d40ba1bbcefa500fa000f6f4c9364a.tar.gz | |
(find-function-regexp): Allow a ) or ( to end a function name.
| -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 3ae98c08a39..e7607494d04 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -60,7 +60,7 @@ ;; (define-derived-mode foo ...), (easy-mmode-define-minor-mode foo) "^\\s-*(\\(def\\(ine-skeleton\\|ine-generic-mode\\|ine-derived-mode\\|\ \[^cgv\W]\\w+\\*?\\)\\|easy-mmode-define-minor-mode\\)\\s-+'?\ -%s\\(\\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', |
