[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master bce27d8: (find-function-regexp): Don't match `defgr
From: |
Dmitry Gutov |
Subject: |
[Emacs-diffs] master bce27d8: (find-function-regexp): Don't match `defgroup' |
Date: |
Sun, 25 Jan 2015 00:20:19 +0000 |
branch: master
commit bce27d884521832a62837b113f4e681974cdaccb
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>
(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).
---
lisp/ChangeLog | 5 +++++
lisp/emacs-lisp/find-func.el | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 15518a7..d42670f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-01-25 Dmitry Gutov <address@hidden>
+
+ * emacs-lisp/find-func.el (find-function-regexp): Don't match
+ `defgroup' (regression from the previous change here).
+
2015-01-23 Thomas Fitzsimmons <address@hidden>
* 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 6c9c798..7ea13d4 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-\\|$\\|\(\\|\)\\)")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master bce27d8: (find-function-regexp): Don't match `defgroup',
Dmitry Gutov <=