aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-02 17:42:10 +0000
committerDave Love2000-11-02 17:42:10 +0000
commitf35a761820c8494c0bc9c9b5ef8695792ec8ce4a (patch)
tree1e775acb90614340d74e33052548b4a8e9eba62f
parent94821e4f02f6878998c7cf42d2aaa84c32826502 (diff)
downloademacs-f35a761820c8494c0bc9c9b5ef8695792ec8ce4a.tar.gz
emacs-f35a761820c8494c0bc9c9b5ef8695792ec8ce4a.zip
(find-variable-regexp): Avoid defgroup.
-rw-r--r--lisp/emacs-lisp/find-func.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index c4da0ce5017..60966d33e8b 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -72,10 +72,10 @@ Please send improvements and fixes to the maintainer."
72 :version "21.1") 72 :version "21.1")
73 73
74(defcustom find-variable-regexp 74(defcustom find-variable-regexp
75 "^\\s-*(def[^uma]\\(\\w\\|\\s_\\)+\\*?\\s-+%s\\(\\s-\\|$\\)" 75 "^\\s-*(def[^umag]\\(\\w\\|\\s_\\)+\\*?\\s-+%s\\(\\s-\\|$\\)"
76 "The regexp used by `find-variable' to search for a variable definition. 76 "The regexp used by `find-variable' to search for a variable definition.
77It should match right up to the variable name. The default value 77It should match right up to the variable name. The default value
78avoids `defun', `defmacro', `defalias', `defadvice'. 78avoids `defun', `defmacro', `defalias', `defadvice', `defgroup'.
79 79
80Please send improvements and fixes to the maintainer." 80Please send improvements and fixes to the maintainer."
81 :type 'regexp 81 :type 'regexp