aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mackenzie2016-09-22 09:56:55 +0000
committerAlan Mackenzie2016-09-22 09:56:55 +0000
commit0b6d8053eaeff2eb58472d28057425c63d24e880 (patch)
tree2409ef2a54e8ce3a9c213deafb0acfb5623430c4
parentc0603964fdaac5209c65bb4af061cbc74747fdb5 (diff)
downloademacs-0b6d8053eaeff2eb58472d28057425c63d24e880.tar.gz
emacs-0b6d8053eaeff2eb58472d28057425c63d24e880.zip
* lisp/progmodes/cc-engine.el (c-forward-decl-or-cast-1): Fix coding error
-rw-r--r--lisp/progmodes/cc-engine.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el
index 9bd78fb821f..5a26c0f2770 100644
--- a/lisp/progmodes/cc-engine.el
+++ b/lisp/progmodes/cc-engine.el
@@ -8633,7 +8633,7 @@ comment at the start of cc-engine.el for more info."
8633 (when (and got-identifier 8633 (when (and got-identifier
8634 (looking-at c-after-suffixed-type-decl-key) 8634 (looking-at c-after-suffixed-type-decl-key)
8635 (or (eq context 'top) 8635 (or (eq context 'top)
8636 (and eq context nil 8636 (and (eq context nil)
8637 (match-beginning 1))) 8637 (match-beginning 1)))
8638 (if (and got-parens 8638 (if (and got-parens
8639 (not got-prefix) 8639 (not got-prefix)