diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2015-01-25 02:20:01 +0200 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2015-01-25 02:20:01 +0200 |
commit | bce27d884521832a62837b113f4e681974cdaccb (patch) | |
tree | 32a18c2c9b851d56583fc392bd2a77e861516694 | |
parent | 02cbd38ae4e4a1e4d309a1bb27c031e154c53f27 (diff) | |
download | emacs-bce27d884521832a62837b113f4e681974cdaccb.tar.gz |
(find-function-regexp): Don't match `defgroup'
* lisp/emacs-lisp/find-func.el (find-function-regexp): Don't match
`defgroup' (regression from the previous change here).
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 15518a73eb1..d42670f743b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2015-01-25 Dmitry Gutov <dgutov@yandex.ru> + + * emacs-lisp/find-func.el (find-function-regexp): Don't match + `defgroup' (regression from the previous change here). + 2015-01-23 Thomas Fitzsimmons <fitzsim@fitzsim.org> * net/ldap.el (ldap-search-internal): Mention binddn in invalid diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 6c9c798bc16..7ea13d4637b 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -59,7 +59,7 @@ (concat "^\\s-*(\\(def\\(ine-skeleton\\|ine-generic-mode\\|ine-derived-mode\\|\ ine\\(?:-global\\)?-minor-mode\\|ine-compilation-mode\\|un-cvs-mode\\|\ -foo\\|\\(?:[^icfv]\\|g[^r]\\)\\(\\w\\|\\s_\\)+\\*?\\)\\|easy-mmode-define-[a-z-]+\\|easy-menu-define\\|\ +foo\\|\\(?:[^icfgv]\\|g[^r]\\)\\(\\w\\|\\s_\\)+\\*?\\)\\|easy-mmode-define-[a-z-]+\\|easy-menu-define\\|\ menu-bar-make-toggle\\)" find-function-space-re "\\('\\|\(quote \\)?%s\\(\\s-\\|$\\|\(\\|\)\\)") |