bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#57176: 29.0.50; Commit 744ed0ce applies outline-minor-mode-highlight


From: Lars Ingebrigtsen
Subject: bug#57176: 29.0.50; Commit 744ed0ce applies outline-minor-mode-highlight-buffer repeatedly
Date: Mon, 15 Aug 2022 09:42:33 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

daanturo <daanturo@gmail.com> writes:

> I think we should clear old outline overlays before applying new ones,
> or adjust the conditions like the old one.

I guess this might be the result of this change?

-          (if (and global-font-lock-mode (font-lock-specified-p major-mode))
-              (progn
-                (font-lock-add-keywords nil outline-font-lock-keywords t)
-                (font-lock-flush))
-            (outline-minor-mode-highlight-buffer)))
+          (when (and global-font-lock-mode (font-lock-specified-p major-mode))
+            (font-lock-add-keywords nil outline-font-lock-keywords t)
+            (font-lock-flush))
+          (outline-minor-mode-highlight-buffer))

I've added Stephen to the CCs; perhaps he has some comments.





reply via email to

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