emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/objed 79ec8af 116/216: Fix boundary error


From: Stefan Monnier
Subject: [elpa] externals/objed 79ec8af 116/216: Fix boundary error
Date: Tue, 8 Jan 2019 12:29:23 -0500 (EST)

branch: externals/objed
commit 79ec8af642fd6bb79504e3efb218ac11470c9db6
Author: Clemera <address@hidden>
Commit: Clemera <address@hidden>

    Fix boundary error
---
 objed-objects.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/objed-objects.el b/objed-objects.el
index 9a82ebd..a53688d 100644
--- a/objed-objects.el
+++ b/objed-objects.el
@@ -599,7 +599,7 @@ objects can throw an error."
         ;; and the buffer boundary is not reached
         (while (and (not break)
                     (or (not max)
-                        (< (point) max))
+                        (<= (point) max))
                     (or (not (and (setq nobj (objed--object :get-obj))
                                   (and nobj (not (equal obj nobj)))))
                         (and nobj



reply via email to

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