]> git.eshelyaron.com Git - emacs.git/commitdiff
Ensure upper bound of font-lock region is less than point-max
authorAlan Mackenzie <acm@muc.de>
Sun, 5 Feb 2023 15:59:44 +0000 (15:59 +0000)
committerAlan Mackenzie <acm@muc.de>
Sun, 5 Feb 2023 15:59:44 +0000 (15:59 +0000)
This fixes bug #61298.  The new long-lines code may have narrowed a buffer
before font-lock-default-fontify-region gets called.

* lisp/font-lock.el (font-lock-default-fontify-region): Set `end' to point-max
if it is greater that it.

lisp/font-lock.el

index 1fa45379b9fac5dc7afce71283a9ae368eb0aeab..9e944fe188a486c4073db131045f37958b24ce84 100644 (file)
@@ -1154,6 +1154,8 @@ Put first the functions more likely to cause a change and cheaper to compute.")
   "Fontify the text between BEG and END.
 If LOUDLY is non-nil, print status messages while fontifying.
 This function is the default `font-lock-fontify-region-function'."
+  (or (<= end (point-max))
+      (setq end (point-max)))
   (with-silent-modifications
    ;; Use the fontification syntax table, if any.
    (with-syntax-table (or font-lock-syntax-table (syntax-table))