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

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

bug#56682: Fix the long lines font locking related slowdowns


From: Gregory Heytings
Subject: bug#56682: Fix the long lines font locking related slowdowns
Date: Mon, 01 Aug 2022 08:38:19 +0000


That's true, but with such big files, the initial scan is slow. So the scenario is simple: you open a big enough file, type M->, and C-p. M-> will be instantaneous, and C-p will take a while, because of syntax-ppss.

Really? I'd expect that `M->` is slow because of `syntax-ppss` (called by font-lock) and then `C-p` is instantaneous.

Yes, really. M-> is fast because syntax-ppss is called inside fontification-functions, which are evaluated in a small portion of the buffer (with locked narrowing).

[...]

And C-p is slow because post-command-hook is (or rather was) not subjected to the same locked narrowing.

I wonder what `C-p` has to do with `post-command-hook`.

After all, that same `post-command-hook` is also run after `M->` as well.


You're right here. Technically it's M-> that is slow. But it's not what the user sees (hence my own confusion): the effect of M-> is immediately visible.





reply via email to

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