emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-27 b2ee665: CC Mode. Fix an off by one error. Fixes bug #41809


From: Alan Mackenzie
Subject: emacs-27 b2ee665: CC Mode. Fix an off by one error. Fixes bug #41809
Date: Tue, 24 Nov 2020 11:34:27 -0500 (EST)

branch: emacs-27
commit b2ee6650243ed2777f3a6c400f194f770f00da6f
Author: Alan Mackenzie <acm@muc.de>
Commit: Alan Mackenzie <acm@muc.de>

    CC Mode.  Fix an off by one error.  Fixes bug #41809
    
    * lisp/progmodes/cc-engine.el (c-full-pp-to-literal): Change > to >= 
(twice).
---
 lisp/progmodes/cc-engine.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el
index f751e72..babe6e7 100644
--- a/lisp/progmodes/cc-engine.el
+++ b/lisp/progmodes/cc-engine.el
@@ -3122,7 +3122,7 @@ comment at the start of cc-engine.el for more info."
               (not base)   ; FIXME!!! Compare base and far-base??
                                        ; (2019-05-21)
               (not end)
-              (> here end))
+              (>= here end))
              (progn
                (setq far-base-and-state (c-parse-ps-state-below here)
                      far-base (car far-base-and-state)
@@ -3135,7 +3135,7 @@ comment at the start of cc-engine.el for more info."
              (or
               (and (> here base) (null end))
               (null (nth 8 s))
-              (and end (> here end))
+              (and end (>= here end))
               (not
                (or
                 (and (nth 3 s)         ; string



reply via email to

[Prev in Thread] Current Thread [Next in Thread]