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

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

bug#56393: Actually fix the long lines display bug


From: Eli Zaretskii
Subject: bug#56393: Actually fix the long lines display bug
Date: Thu, 07 Jul 2022 08:53:47 +0300

> Date: Thu, 07 Jul 2022 00:38:22 +0000
> From: Gregory Heytings <gregory@heytings.org>
> cc: larsi@gnus.org, 56393@debbugs.gnu.org
> 
> > So if font-lock is slow for some reason, it will slow down redisplay.
> >
> 
> Thanks.  I meant the former, but this is very useful nonetheless.  It 
> means that the Lisp code which calculates these properties is (or at least 
> can be) a bottleneck.  To determine which properties must be placed on 
> these 1500 characters, it must presumably look further away, possibly much 
> further away.

That's possible, but limiting that search should in most cases still
produce reasonable fontifications.  At least that's the hope.

> > I think we should understand why it becomes slow before we decide 
> > whether to turn it off or speed it up somehow.  Other editors fontify 
> > text using very different methods, so their limitations are not 
> > necessarily similar to ours.
> 
> We can try, yes.  But my feeling so far is that this won't get us 
> anywhere.

Let's see if your feeling is right, okay?

> > Are you saying that you don't believe in the existence of such code? 
> > Every Lisp program expects to see the same narrowing (or lack thereof) 
> > as the user sees.  So anything different is a time bomb waiting to go 
> > off.
> >
> 
> I don't say that I don't believe in the existence of such code.  I get 
> your point, and agree that narrow-mode (ab)uses a feature in a way that it 
> was never intended to be (ab)used.  But I also say that files with 
> extremely long lines are rare, and that it's in my opinion much better to 
> see some rare functions fail when opening such files than to see Emacs 
> becoming unusable.  Or in other words: if all essential editing commands 
> work on these files, that's already a big step forward.

I think we should defer discussing tradeoffs until we hit a brick wall
of sorts, i.e. get to the point where no significant further
improvements can be made, and we understand why.  The tradeoffs should
be based on such an understanding, because it's not smart giving up
features we could maybe have.

> >> Yes, I've understood that you want to do something else.
> >
> > No, it's the same idea, just implemented differently, and thus without 
> > some of the problems we are discussing.  (But slowness of font-lock will 
> > still need a separate solution -- or the conclusion that we have no 
> > alternative but turn it off.)
> 
> I tried to do that, and so far I don't see how your alternative approach 
> could work.  The problem with long lines is not only that redisplay takes 
> forever in some cases, it's also (and perhaps mainly) that commands take 
> forever.  With dictionary.json, with point on the last character, C-p 
> takes (on my computer) about 26 seconds outside of redisplay.  I don't see 
> how we could tell all that code that it should work on a narrowed buffer 
> without actually narrowing the buffer.

C-p takes an inordinate amount of time in those cases because it calls
functions of the display engine (see vertical-motion).  Limiting the
display code to some small enough region of the buffer will speed that
up as well, since it's the same code in both cases.  The somewhat
tricky part with the likes of C-p is where and how to compute the
restriction.





reply via email to

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