aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-12-10 03:27:31 +0000
committerKarl Heuer1998-12-10 03:27:31 +0000
commitc63ae7f26e474174c0f22f5d1615bf15b68099a2 (patch)
treec99004093a251278e32d485f2c68529119678a92
parent4e363e7e63fa8c7d95b4915e7d79a3eb7a4fe434 (diff)
downloademacs-c63ae7f26e474174c0f22f5d1615bf15b68099a2.tar.gz
emacs-c63ae7f26e474174c0f22f5d1615bf15b68099a2.zip
(cc-imenu-java-generic-expression): Get rid of nested loops.
-rw-r--r--lisp/progmodes/cc-menus.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-menus.el b/lisp/progmodes/cc-menus.el
index 470f3e69db3..7fbe653b6a2 100644
--- a/lisp/progmodes/cc-menus.el
+++ b/lisp/progmodes/cc-menus.el
@@ -137,8 +137,8 @@ A sample value might look like: `\\(_P\\|_PROTO\\)'.")
137 "\\([A-Za-z0-9_-]+[ \t]*[[]?[]]?\\)" 137 "\\([A-Za-z0-9_-]+[ \t]*[[]?[]]?\\)"
138 "\\([ \t]\\)" 138 "\\([ \t]\\)"
139 "\\([A-Za-z0-9_-]+\\)" ; the string we want to get 139 "\\([A-Za-z0-9_-]+\\)" ; the string we want to get
140 "\\([ \t]*\\)+(" 140 "\\([ \t]*\\)("
141 "\\([a-zA-Z,_1-9\n \t]*[[]?[]]?\\)*" ; arguments 141 "\\([][a-zA-Z,_1-9\n \t]*\\)" ; arguments
142 ")[ \t]*" 142 ")[ \t]*"
143; "[^;(]" 143; "[^;(]"
144 "[,a-zA-Z_1-9\n \t]*{" 144 "[,a-zA-Z_1-9\n \t]*{"