]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix args-out-of-range error in format.el
authorEli Zaretskii <eliz@gnu.org>
Sat, 20 Mar 2021 08:48:07 +0000 (10:48 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 20 Mar 2021 08:48:07 +0000 (10:48 +0200)
* lisp/format.el (format-deannotate-region): Ignore todo items
with FROM > TO.  (Bug#47277)

lisp/format.el

index 4209fc6401a06d037c7ba3bc6f5647d1ea39b974..3e2d92fef130e915bbf62222d6f8e52bbe092c08 100644 (file)
@@ -747,13 +747,17 @@ to write these unknown annotations back into the file."
 
            (if (numberp val)   ; add to ambient value if numeric
                (format-property-increment-region from to prop val 0)
-             (put-text-property
-              from to prop
-              (cond ((get prop 'format-list-valued) ; value gets consed onto
-                                                    ; list-valued properties
-                     (let ((prev (get-text-property from prop)))
-                       (cons val (if (listp prev) prev (list prev)))))
-                    (t val))))) ; normally, just set to val.
+              ;; Kludge alert: ignore items with reversed order of
+              ;; FROM and TO.  They seem to be redundant anyway, and
+              ;; in one case I've seen them refer to EOB.
+              (when (<= from to)
+               (put-text-property
+                from to prop
+                (cond ((get prop 'format-list-valued) ; value gets consed onto
+                                                      ; list-valued properties
+                       (let ((prev (get-text-property from prop)))
+                         (cons val (if (listp prev) prev (list prev)))))
+                      (t val)))))) ; normally, just set to val.
          (setq todo (cdr todo)))
 
        (if unknown-ans