]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a CC Mode brace stack cache bug.
authorAlan Mackenzie <acm@muc.de>
Mon, 2 Oct 2017 14:42:13 +0000 (14:42 +0000)
committerAlan Mackenzie <acm@muc.de>
Mon, 2 Oct 2017 14:42:13 +0000 (14:42 +0000)
* lisp/progmodes/cc-engine.el (c-update-brace-stack): Call
c-beginning-of-current-token after a failing search operation, to ensure we
don't cache a point inside a token.

lisp/progmodes/cc-engine.el

index 05b391a3d3876eee3f31268254ed6de64a5880e0..9d65383e25866c25396344bd37e4153de748888d 100644 (file)
@@ -5410,8 +5410,7 @@ comment at the start of cc-engine.el for more info."
   ;; value.
   (let (match kwd-sym (prev-match-pos 1)
              (s (cdr stack))
-             (bound-<> (car stack))
-             )
+             (bound-<> (car stack)))
     (save-excursion
       (cond
        ((and bound-<> (<= to bound-<>))
@@ -5472,6 +5471,9 @@ comment at the start of cc-engine.el for more info."
            (setq s (cdr s))))
         ((c-keyword-member kwd-sym 'c-flat-decl-block-kwds)
          (push 0 s))))
+      ;; The failing `c-syntactic-re-search-forward' may have left us in the
+      ;; middle of a token, which might be a significant token.  Fix this!
+      (c-beginning-of-current-token)
       (cons (point)
            (cons bound-<> s)))))