mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
cc-engine.el (c-remove-stale-state-cache): Fix off-by-one error. Fixes
bug #5747.
This commit is contained in:
parent
ceb245fc38
commit
657071fc07
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2010-03-22 Alan Mackenzie <acm@muc.de>
|
||||
|
||||
* progmodes/cc-engine.el (c-remove-stale-state-cache): Fix
|
||||
off-by-one error. Fixes bug #5747.
|
||||
|
||||
2010-03-22 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* image-dired.el (image-dired-display-thumbs): Fix typo in docstring.
|
||||
|
|
|
|||
|
|
@ -2624,7 +2624,7 @@ comment at the start of cc-engine.el for more info."
|
|||
(< (point-max) c-state-old-cpp-end)))
|
||||
(point-max)
|
||||
(min (point-max) c-state-old-cpp-beg)))
|
||||
(while (and c-state-cache (> (c-state-cache-top-lparen) upper-lim))
|
||||
(while (and c-state-cache (>= (c-state-cache-top-lparen) upper-lim))
|
||||
(setq c-state-cache (cdr c-state-cache)))
|
||||
;; If `upper-lim' is inside the last recorded brace pair, remove its
|
||||
;; RBrace and indicate we'll need to search backwards for a previous
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue