unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Dmitry Gutov <dgutov@yandex.ru>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 56682@debbugs.gnu.org, gregory@heytings.org, monnier@iro.umontreal.ca
Subject: bug#56682: Fix the long lines font locking related slowdowns
Date: Sun, 7 Aug 2022 01:58:06 +0300	[thread overview]
Message-ID: <2c8d6755-cfe2-6559-3fde-3fa30ffb411e@yandex.ru> (raw)
In-Reply-To: <837d3lzv8n.fsf@gnu.org>

On 06.08.2022 10:28, Eli Zaretskii wrote:
>> Date: Sat, 6 Aug 2022 01:38:05 +0300
>> Cc: 56682@debbugs.gnu.org, Eli Zaretskii <eliz@gnu.org>,
>>   Stefan Monnier <monnier@iro.umontreal.ca>
>> From: Dmitry Gutov <dgutov@yandex.ru>
>>
>>> So what you prefer IIUC would be to call fontification-functions with a
>>> locked narrowing to 1 MB if point is before that threshold, and to not
>>> call fontification-functions at all after that threshold?  That might be
>>> another doable approach.
>>
>> If we have to support huge files with max responsiveness, then that
>> would be my preference, yes.
>>
>> I don't see the point of using a "locked" narrowing for this, though.
>> Maybe not even a narrowing at all: just avoid calling
>> fontification-functions with START > value_of(large_file_fontification_max).
> 
> I don't understand why this would be a good idea.  First, if we are
> able to fontify the first 1MB of a file, why won't we be able to
> fontify the 2nd, 3rd, ... Nth 1MB in a similarly fast fashion?

Fontifying a window-ful of buffer near the end of 2N will take ~2x as 
long as doing that near the end of 1N, 3N - ~3x as long, etc.

> Do you
> assume that fontification must go to BOB, but will never go forward
> towards EOB?

That's my experience, yes. Language parsers either don't need to look 
forward at all, or only need to look forward a little. And especially 
since we regularly have to deal with unfinished code (and code is most 
often unfinished from the tail end, not from the front), our 
syntax-propertize and font-lock matchers have to account for that.

> Why would we make such an assumption, especially with
> long lines, where EOB could also be EOL?

That's where syntax-wholeline-max comes into play: it won't extend the 
current region past additional 10000 chars.

Even if that fails to work somehow, we could code up font-lock to apply 
narrowing past a certain point, to definitely limit the possible 
overhead. But I'd rather we not do that without a concrete problem case.

> Next, why assume that your personal preferences in this case will be
> shared by everyone else?  I, for one, will find it very strange to
> have font-lock suddenly disappear at an arbitrary point.

Is it more strange than syntax highlighting starting to go crazy around 
the same arbitrary point?

I'm assuming that people will quickly understand that very big files are 
treated in a special way, and I seem to recall that certain other 
editors use a similar approach (switch off some features past a certain 
file length).

> If we don't
> want to make the assumption it will be good for everyone, your
> proposal should be one optional behavior, but not the only one.

I'm happy for this to be customizable, and for everyone to be able to 
choose the tradeoffs they want. For that to be possible, this choice 
need to happen in Lisp. But I made my arguments for what seems like a 
good default behavior, both reasonable-looking and fast in (hopefully) 
all significant cases.

The important part is for this to be customizable separately from 
long-line-threshold because these are different issues, and the 
slowdowns happen around different amounts of text.

> And finally, there's no way to restrict fontification-functions from
> accessing the buffer beyond the first 1MB, even if we want to, without
> something like the locked narrowing.

font-lock rules really shouldn't call 'widen', we've talked about this 
before (in mmm-mode threads), then went through the built-in major modes 
which did so, and fixed that.

The sole (big) exception is CC Mode, but its internals aren't compatible 
with the current forced narrowing either, and Gregory said it's not 
important in the context of long lines or large files anyway.

So as long as major modes behave, we won't need the locked narrowing in 
this area. And hopefully won't need narrowing at all.

>>   > emacs -Q
>>   > M-: (setq long-line-threshold nil syntax-wholeline-max most-positive-
>>   > fixnum) RET
>>   > C-x C-f dictionary.json RET y ;; takes 160 seconds
>>   > C-e ;; takes 200 seconds
>>   >
>>   > emacs -Q
>>   > M-: (setq long-line-threshold nil) RET
>>   > C-x C-f dictionary.json RET y ;; immediate
>>   > C-e ;; not finished after 1200 seconds (20 minutes), I killed Emacs
>>
>> I get what you're saying, but the approach does seem "right" to me
>> because it works, letting me view and edit dictionary.json with good
>> performance and behavior.
> 
> On a Core i9 machine and with an optimized build, I presume?  And with
> "good" being your subjective judgment that places more importance on
> fontification than on responsiveness?  That's not necessarily a good
> data point on which to base our decisions regarding the default
> behavior.

On a slower machine, you'll just need to find a correspondingly smaller 
file to see the same combination: the line is long enough for redisplay 
to stutter with (setq long-line-threshold nil), but the file is not big 
enough for font-lock to really become the bottleneck.

Even with my "big and beefy" i9, I've been seeing redisplay slowdowns 
with lines containing 1000s of chars. Very noticeable around 40K.

Whereas font-lock can remain fast with files up to 100x that size. And 
even then remain bearable so long as the user doesn't jump around too 
much, editing the file at BOB then going to EOB, time and time again.

>> Either way, I believe the change is at the right level of abstraction,
>> and if it has bugs, they should be solvable without major redesign.
> 
> Alas, Mr. ShouldBe is not available for this project, and probably
> won't be any time soon.

No need to mock my request for a proper reproduction scenario.





  reply	other threads:[~2022-08-06 22:58 UTC|newest]

Thread overview: 685+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-21 18:00 bug#56682: Fix the long lines font locking related slowdowns Gregory Heytings
2022-07-21 18:04 ` Eli Zaretskii
2022-07-22 10:16   ` Gregory Heytings
2022-07-22 14:11     ` Eli Zaretskii
2022-07-22 14:44       ` Lars Ingebrigtsen
2022-07-25 20:59         ` Gregory Heytings
2022-07-22 14:51     ` Eli Zaretskii
2022-07-22 15:06       ` Eli Zaretskii
2022-07-22 19:25         ` Eli Zaretskii
2022-07-23  6:10     ` Eli Zaretskii
2022-07-23  7:07       ` Gerd Möllmann
2022-07-23  7:12         ` Eli Zaretskii
2022-07-23  7:30           ` Gerd Möllmann
2022-07-23  7:18         ` Gerd Möllmann
2022-07-23  8:00           ` Gerd Möllmann
2022-07-23  8:04             ` Gerd Möllmann
2022-07-23  8:11               ` Gerd Möllmann
2022-07-23 13:42                 ` Eli Zaretskii
2022-07-23 14:25                   ` Gerd Möllmann
2022-07-23 14:33                     ` Gerd Möllmann
2022-07-23 15:43                       ` Eli Zaretskii
2022-07-23 14:35                     ` Visuwesh
2022-07-23 14:46                       ` Gerd Möllmann
2022-07-23 15:01                         ` Gerd Möllmann
2022-07-23 16:02                           ` Eli Zaretskii
2022-07-23 17:23                             ` Gerd Möllmann
2022-07-23 17:44                               ` Eli Zaretskii
2022-07-23 17:49                                 ` Eli Zaretskii
2022-07-23 17:59                                   ` Eli Zaretskii
2022-07-24  6:16                                     ` Gerd Möllmann
2022-07-24  6:52                                       ` Eli Zaretskii
2022-07-24 14:36                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-24 15:07                                           ` Eli Zaretskii
2022-07-24 15:48                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-24 16:18                                               ` Eli Zaretskii
2022-07-24 16:26                                               ` Lars Ingebrigtsen
2022-07-24 16:33                                                 ` Eli Zaretskii
2022-07-24 14:34                                       ` bug#56682: Interval tree balance (was: Fix the long lines font locking related slowdowns) Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-24 15:47                                         ` bug#56682: Interval tree balance Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-25  6:23                                         ` bug#56682: Fix the long lines font locking related slowdowns Gerd Möllmann
2022-07-25 20:49                                           ` Gregory Heytings
2022-07-26  6:32                                             ` Gerd Möllmann
2022-07-26  6:53                                               ` Gregory Heytings
2022-07-23 14:35                     ` Gerd Möllmann
2022-07-23 14:47                   ` Eli Zaretskii
2022-07-23 15:04                   ` Gerd Möllmann
2022-07-23 16:03                     ` Eli Zaretskii
2022-07-25 21:47                   ` Gregory Heytings
2022-07-26  6:51                     ` Gerd Möllmann
2022-07-26  7:08                       ` Gerd Möllmann
2022-07-26 12:12                       ` Eli Zaretskii
2022-07-26 12:22                         ` Gerd Möllmann
2022-07-26 11:37                     ` Eli Zaretskii
2022-07-26 11:53                       ` Gregory Heytings
2022-07-26 12:09                         ` Eli Zaretskii
2022-07-26 12:34                           ` Gregory Heytings
2022-07-26 12:41                             ` Eli Zaretskii
2022-07-26 13:08                               ` Gerd Möllmann
2022-07-26 17:29                                 ` Eli Zaretskii
2022-07-26 17:46                               ` Eli Zaretskii
2022-07-26 20:55                                 ` Gregory Heytings
2022-07-27  2:41                                   ` Eli Zaretskii
2022-07-27  7:08                                     ` Gregory Heytings
2022-07-27  2:33                                 ` Eli Zaretskii
2022-07-27  6:24                                   ` Gerd Möllmann
2022-07-27 17:26                                     ` Eli Zaretskii
2022-07-28 16:29                                       ` Gregory Heytings
2022-07-28 16:42                                         ` Gregory Heytings
2022-07-28 16:48                                         ` Eli Zaretskii
2022-07-28 17:16                                           ` Gregory Heytings
2022-07-28 17:44                                             ` Eli Zaretskii
2022-07-28 18:40                                               ` Gregory Heytings
2022-07-28 18:57                                                 ` Eli Zaretskii
2022-07-28 21:31                                                   ` Gregory Heytings
2022-07-29  7:12                                                     ` Eli Zaretskii
2022-07-29  8:33                                                       ` Gregory Heytings
2022-07-29 10:29                                                         ` Eli Zaretskii
2022-07-29 10:44                                                           ` Gregory Heytings
2022-07-29 10:53                                                             ` Eli Zaretskii
2022-07-29 11:03                                                               ` Gregory Heytings
     [not found]                                                           ` <19e5f0b3-c259-79f5-c31-469e8dfaf193@heytings.org>
2022-07-29 10:50                                                             ` Gregory Heytings
2022-07-29 11:16                                                               ` Eli Zaretskii
2022-07-29 12:05                                                                 ` Gregory Heytings
2022-07-29 12:36                                                                   ` Eli Zaretskii
2022-07-29 13:27                                                         ` Eli Zaretskii
2022-07-29 13:58                                                           ` Eli Zaretskii
2022-07-29 15:35                                                             ` Gregory Heytings
2022-07-29 15:19                                                           ` Gregory Heytings
2022-07-29 15:35                                                             ` Eli Zaretskii
2022-07-29 16:37                                                               ` Gregory Heytings
2022-07-29 18:09                                                                 ` Eli Zaretskii
2022-07-29 18:27                                                                   ` Gregory Heytings
2022-07-29 20:48                                                                     ` Gregory Heytings
2022-07-29 20:02                                                                   ` Gregory Heytings
2022-07-30  9:05                                                                     ` Eli Zaretskii
2022-07-30 11:34                                                                       ` Gregory Heytings
2022-07-30 13:18                                                                         ` Eli Zaretskii
2022-07-30 13:31                                                                           ` Gregory Heytings
2022-07-30 15:23                                                                             ` Eli Zaretskii
2022-07-30 18:13                                                                               ` Gregory Heytings
2022-07-30 18:34                                                                                 ` Eli Zaretskii
2022-07-30 18:47                                                                                   ` Gregory Heytings
2022-07-30 19:02                                                                                     ` Eli Zaretskii
2022-07-30 19:11                                                                                       ` Gregory Heytings
2022-07-31  6:16                                                                                         ` Eli Zaretskii
2022-07-31  8:22                                                                                           ` Lars Ingebrigtsen
2022-07-31  8:38                                                                                             ` Eli Zaretskii
2022-07-31  8:41                                                                                               ` Lars Ingebrigtsen
2022-07-31 22:45                                                                                                 ` Gregory Heytings
2022-07-31  8:30                                                                                           ` Gregory Heytings
2022-07-31  9:04                                                                                             ` Eli Zaretskii
2022-07-31 14:09                                                                                               ` Gregory Heytings
2022-07-31  7:11                                                                               ` Eli Zaretskii
2022-07-31 22:54                                                                                 ` Gregory Heytings
2022-08-01 12:38                                                                                   ` Eli Zaretskii
2022-08-01 12:51                                                                                     ` Gregory Heytings
2022-08-01 13:13                                                                                       ` Eli Zaretskii
2022-08-01 13:30                                                                                         ` Gregory Heytings
2022-08-01 13:24                                                                                       ` Eli Zaretskii
2022-08-01 13:38                                                                                         ` Gregory Heytings
2022-08-01 13:45                                                                                         ` Eli Zaretskii
2022-08-01 15:08                                                                                           ` Gregory Heytings
2022-08-01 15:49                                                                                             ` Eli Zaretskii
2022-07-22 23:25   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-23  6:41     ` Eli Zaretskii
2022-07-23 14:07       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-23 15:29         ` Eli Zaretskii
2022-07-23 15:46           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-23 16:15             ` Eli Zaretskii
2022-07-23 16:19               ` Eli Zaretskii
2022-07-24  5:50                 ` Gerd Möllmann
2022-07-24 14:35                   ` Dmitry Gutov
2022-07-24 15:05                     ` Eli Zaretskii
2022-07-25 23:23                       ` Dmitry Gutov
2022-07-26  6:52                         ` Gregory Heytings
     [not found]                           ` <addcac7f-cb95-c433-58e5-e2d525582613@yandex.ru>
2022-07-27  6:55                             ` Gregory Heytings
2022-07-27 21:38                               ` Dmitry Gutov
2022-07-28  6:21                                 ` Eli Zaretskii
2022-07-28  7:49                                 ` Gregory Heytings
2022-08-04  0:49                                   ` Dmitry Gutov
2022-08-04  1:26                                     ` Gregory Heytings
2022-08-04  7:50                                       ` Eli Zaretskii
2022-08-04  9:24                                         ` Gregory Heytings
2022-08-04  9:36                                           ` Eli Zaretskii
2022-08-04  9:43                                             ` Gregory Heytings
2022-08-04  9:40                                           ` Eli Zaretskii
2022-08-04  9:46                                             ` Gregory Heytings
2022-08-04  9:57                                               ` Eli Zaretskii
2022-08-04 10:33                                                 ` Gregory Heytings
2022-08-04 13:10                                                   ` Eli Zaretskii
2022-08-04 14:14                                                   ` Eli Zaretskii
2022-08-04 14:31                                                     ` Eli Zaretskii
2022-08-04 15:25                                                       ` Gregory Heytings
2022-08-04 15:08                                                     ` Gregory Heytings
2022-08-04 16:00                                                       ` Eli Zaretskii
2022-08-04 16:25                                                         ` Gregory Heytings
2022-08-04 17:06                                                           ` Eli Zaretskii
2022-08-04 18:16                                                             ` Gregory Heytings
2022-08-04 18:52                                                               ` Eli Zaretskii
2022-08-04 19:26                                                                 ` Gregory Heytings
2022-08-05  6:05                                                                   ` Eli Zaretskii
2022-08-05  9:37                                                                     ` Gregory Heytings
2022-08-05 11:40                                                                       ` Eli Zaretskii
2022-08-05 11:50                                                                         ` Gregory Heytings
2022-08-05 13:43                                                                           ` Eli Zaretskii
2022-08-06 13:28                                                                           ` Eli Zaretskii
2022-08-07  0:29                                                                             ` Gregory Heytings
2022-08-07 14:07                                                                               ` Eli Zaretskii
2022-08-06 14:05                                                                           ` Eli Zaretskii
2022-08-07  0:30                                                                             ` Gregory Heytings
2022-08-04  9:52                                           ` Stefan Kangas
2022-08-04 10:35                                       ` Dmitry Gutov
2022-08-04 11:29                                         ` Gregory Heytings
2022-08-04 11:59                                           ` Stefan Kangas
2022-08-04 12:05                                             ` Gregory Heytings
2022-08-04 12:40                                               ` Eli Zaretskii
2022-08-04 13:10                                                 ` Gregory Heytings
2022-08-04 21:37                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04 13:09                                         ` Eli Zaretskii
2022-08-05  1:39                                           ` Dmitry Gutov
2022-08-05  7:38                                             ` Eli Zaretskii
2022-08-05  8:21                                             ` Gregory Heytings
2022-08-05 10:49                                               ` Eli Zaretskii
2022-08-04  7:29                                     ` Eli Zaretskii
2022-07-26 11:45                         ` Eli Zaretskii
2022-07-26 20:52                           ` Dmitry Gutov
2022-07-23 19:05               ` Gregory Heytings
2022-07-23 19:12                 ` Eli Zaretskii
2022-07-23 19:21                   ` Gregory Heytings
2022-07-25 21:23     ` Gregory Heytings
2022-07-26 21:17       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-27  6:44         ` Gregory Heytings
2022-07-30  7:16           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-30  8:12             ` Eli Zaretskii
2022-07-30 10:52               ` Gregory Heytings
2022-07-30 10:59                 ` Eli Zaretskii
2022-07-30 11:07                   ` Gregory Heytings
2022-07-30 11:32                 ` Eli Zaretskii
2022-07-30 11:36                   ` Gregory Heytings
2022-07-30 12:05                     ` Gregory Heytings
2022-07-31  7:25                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31  7:48                   ` Eli Zaretskii
2022-07-31  8:08                   ` Gregory Heytings
2022-07-31 10:41                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 10:50                       ` Gregory Heytings
2022-07-31 21:41                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 22:06                           ` Gregory Heytings
2022-07-31 22:45                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 23:12                               ` Gregory Heytings
2022-08-01  7:11                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-01  7:51                                   ` Gregory Heytings
2022-08-01 12:12                                   ` Eli Zaretskii
2022-08-01 21:54                                     ` Dmitry Gutov
2022-08-02  2:31                                       ` Eli Zaretskii
2022-08-02 14:29                                         ` Dmitry Gutov
2022-08-02 14:57                                           ` Gregory Heytings
2022-08-02 16:14                                             ` Eli Zaretskii
2022-08-02 16:19                                               ` Gregory Heytings
2022-08-03  0:00                                                 ` Dmitry Gutov
2022-08-03  0:26                                                   ` Dmitry Gutov
2022-08-03  8:11                                                     ` Gregory Heytings
2022-08-03 11:56                                                     ` Eli Zaretskii
2022-08-04  1:08                                                       ` Dmitry Gutov
2022-08-04  1:34                                                         ` Gregory Heytings
2022-08-04  6:40                                                         ` Eli Zaretskii
2022-08-02 22:04                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05  2:03                                             ` Dmitry Gutov
2022-08-05  7:43                                               ` Eli Zaretskii
2022-08-05 11:34                                                 ` Dmitry Gutov
2022-08-05 11:48                                                   ` Eli Zaretskii
2022-08-05 12:08                                                     ` Dmitry Gutov
2022-08-05 12:20                                                       ` Gregory Heytings
2022-08-05 12:50                                                         ` Dmitry Gutov
2022-08-05 13:00                                                           ` Gregory Heytings
2022-08-05 13:11                                                             ` Dmitry Gutov
2022-08-05 13:17                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05 13:30                                                             ` Dmitry Gutov
2022-08-05 13:41                                                               ` Gregory Heytings
2022-08-05 14:00                                                                 ` Dmitry Gutov
2022-08-05 14:09                                                                   ` Gregory Heytings
2022-08-05 22:38                                                                     ` Dmitry Gutov
2022-08-06  7:28                                                                       ` Eli Zaretskii
2022-08-06 22:58                                                                         ` Dmitry Gutov [this message]
2022-08-07  0:44                                                                           ` Gregory Heytings
2022-08-07  6:11                                                                           ` Eli Zaretskii
2022-08-07 18:27                                                                             ` Dmitry Gutov
2022-08-07 18:38                                                                               ` Eli Zaretskii
2022-08-12 10:47                                                                                 ` Dmitry Gutov
2022-08-12 12:34                                                                                   ` Gregory Heytings
2022-08-12 16:35                                                                                     ` Dmitry Gutov
2022-08-12 17:56                                                                                       ` Eli Zaretskii
2022-08-12 18:09                                                                                         ` Dmitry Gutov
2022-08-12 21:41                                                                                           ` Gregory Heytings
2022-08-13  5:56                                                                                             ` Eli Zaretskii
2022-08-13 13:37                                                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-13 14:25                                                                                                 ` Eli Zaretskii
2022-08-13 14:32                                                                                                   ` Gregory Heytings
2022-08-13 15:11                                                                                                     ` Eli Zaretskii
2022-08-13 15:38                                                                                                       ` Gregory Heytings
2022-08-13 16:46                                                                                                     ` Dmitry Gutov
2022-08-13 17:16                                                                                                       ` Gregory Heytings
2022-08-13 19:10                                                                                                         ` Dmitry Gutov
2022-08-13 19:54                                                                                                           ` Gregory Heytings
2022-08-13 20:19                                                                                                             ` Dmitry Gutov
2022-08-13 21:15                                                                                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-13  8:27                                                                                             ` Dmitry Gutov
2022-08-12 21:31                                                                                       ` Gregory Heytings
2022-08-13  2:01                                                                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-13  6:13                                                                                           ` Eli Zaretskii
2022-08-13  8:00                                                                                             ` dgutov
2022-08-13 13:44                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-13 16:48                                                                                             ` Dmitry Gutov
2022-08-13  7:58                                                                                           ` Dmitry Gutov
2022-08-13 13:42                                                                                           ` Gregory Heytings
2022-08-13 14:23                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-13 14:33                                                                                               ` Gregory Heytings
2022-08-13 16:59                                                                                             ` Dmitry Gutov
2022-08-13 17:26                                                                                               ` Gregory Heytings
2022-08-13 19:12                                                                                                 ` Dmitry Gutov
2022-08-14  5:29                                                                                                   ` Eli Zaretskii
2022-08-14  9:54                                                                                                     ` Dmitry Gutov
2022-08-13  9:00                                                                                         ` Dmitry Gutov
2022-08-13 14:24                                                                                           ` Gregory Heytings
2022-08-13 17:20                                                                                             ` Dmitry Gutov
2022-08-13 17:43                                                                                               ` Gregory Heytings
2022-08-13 19:19                                                                                                 ` Dmitry Gutov
2022-08-14  5:36                                                                                                   ` Eli Zaretskii
2022-08-14  9:41                                                                                                     ` Dmitry Gutov
2022-08-14 13:02                                                                                                       ` Eli Zaretskii
2022-08-14 15:37                                                                                                         ` Dmitry Gutov
2022-08-14 16:24                                                                                                           ` Gregory Heytings
2022-08-14 17:51                                                                                                             ` Dmitry Gutov
2022-08-14 17:54                                                                                                               ` Gregory Heytings
2022-08-14 18:18                                                                                                                 ` Dmitry Gutov
2022-08-15  8:53                                                                                                                   ` Gregory Heytings
2022-08-14 18:01                                                                                                               ` Eli Zaretskii
2022-08-14 18:14                                                                                                                 ` Dmitry Gutov
2022-08-14 18:27                                                                                                                   ` Eli Zaretskii
2022-08-14 22:07                                                                                                                     ` Dmitry Gutov
2022-08-15  2:32                                                                                                                       ` Eli Zaretskii
2022-08-15 10:06                                                                                                                         ` Dmitry Gutov
2022-08-15 11:51                                                                                                                           ` Eli Zaretskii
2022-08-15 12:01                                                                                                                             ` dick
2022-08-15 12:06                                                                                                                             ` Dmitry Gutov
2022-08-15 12:45                                                                                                                               ` Eli Zaretskii
2022-08-15 14:19                                                                                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15  8:59                                                                                                                   ` Gregory Heytings
2022-08-13 17:54                                                                                               ` Eli Zaretskii
2022-08-13 19:08                                                                                                 ` Dmitry Gutov
2022-08-14  5:23                                                                                                   ` Eli Zaretskii
2022-08-14 10:29                                                                                                     ` Dmitry Gutov
2022-08-14 13:15                                                                                                       ` Eli Zaretskii
2022-08-14 17:47                                                                                                         ` Dmitry Gutov
2022-08-14 17:59                                                                                                           ` Eli Zaretskii
2022-08-14 20:46                                                                                                             ` Dmitry Gutov
2022-08-15 14:06                                                                                                               ` Eli Zaretskii
2022-08-15 15:42                                                                                                                 ` Dmitry Gutov
2022-08-15 15:52                                                                                                                   ` Eli Zaretskii
2022-08-15 16:44                                                                                                                     ` Dmitry Gutov
2022-08-15 16:58                                                                                                                       ` Eli Zaretskii
2022-08-15 19:51                                                                                                                         ` Dmitry Gutov
2022-08-16  2:33                                                                                                                           ` Eli Zaretskii
2022-08-16 14:00                                                                                                                             ` Dmitry Gutov
2022-08-16 14:10                                                                                                                               ` Eli Zaretskii
2022-08-16 14:39                                                                                                                                 ` Dmitry Gutov
2022-08-14 16:16                                                                                                       ` Gregory Heytings
2022-08-14 17:54                                                                                                         ` Dmitry Gutov
2022-08-14 18:47                                                                                                           ` Gregory Heytings
2022-08-14 19:15                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-14 21:03                                                                                                               ` Dmitry Gutov
2022-08-15  8:51                                                                                                               ` Gregory Heytings
2022-08-15  1:23                                                                                                           ` Ihor Radchenko
2022-08-15  1:52                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15  2:10                                                                                                               ` Ihor Radchenko
2022-08-15  2:41                                                                                                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15  3:10                                                                                                                   ` Ihor Radchenko
2022-08-15  9:11                                                                                                                     ` Gregory Heytings
2022-08-15 11:47                                                                                                                       ` Ihor Radchenko
2022-08-16 10:24                                                                                                                         ` Gregory Heytings
2022-08-16 10:49                                                                                                                           ` Ihor Radchenko
2022-08-16 11:30                                                                                                                             ` Gregory Heytings
2022-08-16 11:33                                                                                                                               ` Ihor Radchenko
2022-08-15  9:56                                                                                                                     ` Dmitry Gutov
2022-08-15 12:08                                                                                                                       ` Ihor Radchenko
2022-08-15 12:46                                                                                                                         ` Eli Zaretskii
2022-08-15 14:26                                                                                                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16  4:31                                                                                                                           ` Ihor Radchenko
2022-08-16 10:26                                                                                                                             ` Gregory Heytings
2022-08-16 10:52                                                                                                                               ` Ihor Radchenko
2022-08-16 13:20                                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 13:29                                                                                                                               ` Ihor Radchenko
2022-08-15 11:17                                                                                                                 ` Eli Zaretskii
2022-08-16  4:38                                                                                                                   ` Ihor Radchenko
2022-08-16 11:19                                                                                                                     ` Eli Zaretskii
2022-08-16 11:30                                                                                                                       ` Ihor Radchenko
2022-08-16 12:10                                                                                                                         ` Eli Zaretskii
2022-08-16 12:25                                                                                                                           ` Ihor Radchenko
2022-08-16 12:46                                                                                                                             ` Eli Zaretskii
2022-08-16 13:26                                                                                                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15 14:03                                                                                               ` Eli Zaretskii
2022-08-15 15:52                                                                                                 ` Dmitry Gutov
2022-08-15 16:05                                                                                                   ` Eli Zaretskii
2022-08-15 18:17                                                                                                     ` Dmitry Gutov
2022-08-15 18:28                                                                                                       ` Eli Zaretskii
2022-08-15 21:18                                                                                                         ` Dmitry Gutov
2022-08-16  2:45                                                                                                           ` Eli Zaretskii
2022-08-16 10:57                                                                                                             ` Dmitry Gutov
2022-08-15 19:25                                                                                                       ` Gregory Heytings
2022-08-15 19:54                                                                                                         ` Dmitry Gutov
2022-08-15 20:25                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15 20:40                                                                                                             ` Dmitry Gutov
2022-08-15 21:57                                                                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15 23:33                                                                                                                 ` Dmitry Gutov
2022-08-15 19:36                                                                                                     ` Gregory Heytings
2022-08-15 20:17                                                                                                       ` Dmitry Gutov
2022-08-15 20:29                                                                                                         ` Gregory Heytings
2022-08-15 20:44                                                                                                           ` Dmitry Gutov
2022-08-15 20:53                                                                                                             ` Gregory Heytings
2022-08-15 21:15                                                                                                               ` Dmitry Gutov
2022-08-15 22:08                                                                                                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15 22:14                                                                                                                   ` Gregory Heytings
2022-08-15 22:23                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16  8:12                                                                                                                       ` Gregory Heytings
2022-08-16  8:21                                                                                                                         ` Gregory Heytings
2022-08-16 13:43                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 13:53                                                                                                                             ` Eli Zaretskii
2022-08-16 14:03                                                                                                                             ` Gregory Heytings
2022-08-16 14:22                                                                                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 13:39                                                                                                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 14:02                                                                                                                           ` Gregory Heytings
2022-08-16 14:15                                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 14:21                                                                                                                               ` Gregory Heytings
2022-08-16 14:32                                                                                                                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15 21:42                                                                                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15 21:47                                                                                                           ` Gregory Heytings
2022-08-15 22:15                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-15 22:20                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16  8:12                                                                                                               ` Gregory Heytings
2022-08-16  2:28                                                                                                       ` Eli Zaretskii
2022-08-16  8:26                                                                                                         ` Gregory Heytings
2022-08-16 11:34                                                                                                           ` Eli Zaretskii
2022-08-16 12:42                                                                                                             ` Gregory Heytings
2022-08-16 12:51                                                                                                               ` Eli Zaretskii
2022-08-16 13:07                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 13:09                                                                                                             ` Eli Zaretskii
2022-08-16 13:58                                                                                                               ` Dmitry Gutov
2022-08-16 14:07                                                                                                                 ` Eli Zaretskii
2022-08-16 14:11                                                                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 14:14                                                                                                                     ` Eli Zaretskii
2022-08-16 14:31                                                                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 15:51                                                                                                                         ` Eli Zaretskii
2022-08-16 17:15                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 17:26                                                                                                                             ` Eli Zaretskii
2022-08-16 19:18                                                                                                                               ` bug#56682: locked narrowing (was: bug#56682: Fix the long lines font locking related slowdowns) Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 19:33                                                                                                                                 ` bug#56682: locked narrowing dick
2022-08-16 19:39                                                                                                                                 ` bug#56682: locked narrowing (was: bug#56682: Fix the long lines font locking related slowdowns) Gregory Heytings
2022-08-16 20:57                                                                                                                                   ` bug#56682: locked narrowing Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 21:18                                                                                                                                     ` Gregory Heytings
2022-08-16 20:23                                                                                                                                 ` bug#56682: locked narrowing (was: bug#56682: Fix the long lines font locking related slowdowns) Gregory Heytings
2022-08-16 21:42                                                                                                                                   ` bug#56682: locked narrowing Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 21:50                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 11:28                                                                                                                                 ` bug#56682: locked narrowing (was: bug#56682: Fix the long lines font locking related slowdowns) Eli Zaretskii
2022-08-17 13:06                                                                                                                                   ` bug#56682: locked narrowing Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 13:30                                                                                                                                     ` Eli Zaretskii
2022-08-17 13:50                                                                                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 13:59                                                                                                                                         ` Eli Zaretskii
2022-08-17 14:11                                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 14:25                                                                                                                                             ` Eli Zaretskii
2022-08-17 15:58                                                                                                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 16:52                                                                                                                                                 ` Eli Zaretskii
2022-08-17 17:09                                                                                                                                                   ` Eli Zaretskii
2022-08-17 19:38                                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 17:58                                                                                                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 18:29                                                                                                                                                     ` Eli Zaretskii
2022-08-17 19:09                                                                                                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 19:19                                                                                                                                                         ` Eli Zaretskii
2022-08-17 20:04                                                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 18:33                                                                                                                                                     ` Eli Zaretskii
2022-08-17 19:18                                                                                                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 19:24                                                                                                                                                         ` Eli Zaretskii
2022-08-17 20:09                                                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-18  5:19                                                                                                                                                             ` Eli Zaretskii
2022-08-20 16:20                                                                                                                                                               ` Gregory Heytings
2022-08-20 17:12                                                                                                                                                                 ` Eli Zaretskii
2022-08-20 17:21                                                                                                                                                                 ` Eli Zaretskii
2022-08-20 17:44                                                                                                                                                                   ` Gregory Heytings
2022-10-18 16:30                                                                                                                                                                 ` Dmitry Gutov
2022-11-26 14:14                                                                                                                                                                   ` Gregory Heytings
2022-11-29  3:20                                                                                                                                                                     ` Dmitry Gutov
2022-11-29 12:47                                                                                                                                                                       ` Eli Zaretskii
2022-11-29 13:21                                                                                                                                                                         ` Dmitry Gutov
2022-11-29 14:25                                                                                                                                                                           ` Eli Zaretskii
     [not found]                                                                                                                                                                             ` <444288a4-b51a-9544-2e60-d28b0aa2bb75@yandex.ru>
2022-11-29 15:47                                                                                                                                                                               ` Eli Zaretskii
2022-11-29 17:10                                                                                                                                                                       ` Gregory Heytings
2022-11-29 17:56                                                                                                                                                                         ` Dmitry Gutov
2022-11-29 18:19                                                                                                                                                                           ` Eli Zaretskii
2022-11-29 19:29                                                                                                                                                                             ` Dmitry Gutov
2022-11-29 19:51                                                                                                                                                                               ` Eli Zaretskii
2022-11-29 20:36                                                                                                                                                                                 ` Dmitry Gutov
2022-11-29 20:11                                                                                                                                                                           ` Gregory Heytings
2022-11-29 20:47                                                                                                                                                                             ` Dmitry Gutov
2022-11-29 20:59                                                                                                                                                                               ` Gregory Heytings
2022-11-30  0:15                                                                                                                                                                                 ` Gregory Heytings
2022-11-30  0:47                                                                                                                                                                                   ` Dmitry Gutov
2022-11-30 10:00                                                                                                                                                                                     ` Gregory Heytings
2022-11-30  3:42                                                                                                                                                                                   ` Eli Zaretskii
2022-11-30 10:11                                                                                                                                                                                     ` Gregory Heytings
2022-11-30 14:04                                                                                                                                                                                       ` Eli Zaretskii
2022-11-30 14:40                                                                                                                                                                                         ` Gregory Heytings
2022-11-30 15:31                                                                                                                                                                                           ` Eli Zaretskii
2022-11-30 22:09                                                                                                                                                                                             ` Gregory Heytings
2022-12-01  7:05                                                                                                                                                                                               ` Eli Zaretskii
2022-12-01 20:49                                                                                                                                                                                                 ` Gregory Heytings
2022-12-01 20:52                                                                                                                                                                                                   ` Gregory Heytings
2022-12-01 21:14                                                                                                                                                                                                   ` Eli Zaretskii
2022-12-01 21:36                                                                                                                                                                                                     ` Gregory Heytings
2022-12-01 21:43                                                                                                                                                                                                       ` Eli Zaretskii
2022-12-01 22:05                                                                                                                                                                                                         ` dick
2022-12-01 22:23                                                                                                                                                                                                         ` Gregory Heytings
2022-12-01 23:11                                                                                                                                                                                                           ` Gregory Heytings
2022-12-01 23:48                                                                                                                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  0:24                                                                                                                                                                                                               ` Gregory Heytings
2022-12-02  2:52                                                                                                                                                                                                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  8:04                                                                                                                                                                                                                   ` Eli Zaretskii
2022-12-02  8:08                                                                                                                                                                                                                     ` Gregory Heytings
2022-12-02 14:10                                                                                                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  8:54                                                                                                                                                                                                                   ` Gregory Heytings
2022-12-02 14:13                                                                                                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  7:49                                                                                                                                                                                                               ` Eli Zaretskii
2022-12-02  8:04                                                                                                                                                                                                                 ` Gregory Heytings
2022-12-02  8:57                                                                                                                                                                                                                   ` Eli Zaretskii
2022-12-02  9:16                                                                                                                                                                                                                     ` Gregory Heytings
2022-12-02 12:02                                                                                                                                                                                                                       ` Eli Zaretskii
2022-12-02  7:05                                                                                                                                                                                                           ` Eli Zaretskii
2022-12-02  7:56                                                                                                                                                                                                             ` Gregory Heytings
2022-12-02  8:51                                                                                                                                                                                                               ` Eli Zaretskii
2022-12-02  9:14                                                                                                                                                                                                                 ` Gregory Heytings
2022-12-01 21:15                                                                                                                                                                                                   ` Gregory Heytings
2022-11-30 15:21                                                                                                                                                                                       ` Dmitry Gutov
2022-11-30 13:19                                                                                                                                                                                   ` Eli Zaretskii
2022-11-30 13:52                                                                                                                                                                                     ` Gregory Heytings
2022-11-30 15:03                                                                                                                                                                                       ` Eli Zaretskii
2022-11-29 18:16                                                                                                                                                                         ` Eli Zaretskii
2022-11-30 16:34                                                                                                                                                                     ` Juri Linkov
2022-11-30 17:34                                                                                                                                                                       ` Eli Zaretskii
2022-12-06 17:14                                                                                                                                                                       ` Juri Linkov
2022-12-06 20:11                                                                                                                                                                         ` Gregory Heytings
2022-12-07  7:52                                                                                                                                                                           ` Juri Linkov
     [not found]                                                                                                                                                                 ` <5faa8871-e809-8750-325a-991a71e76639@yandex.ru>
2022-10-19 17:49                                                                                                                                                                   ` Gregory Heytings
     [not found]                                                                                                                                                                 ` <f3c1c37c495f2b2af64f@heytings.org>
2022-11-26  2:53                                                                                                                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-11-26 10:08                                                                                                                                                                   ` Eli Zaretskii
2022-11-26 16:15                                                                                                                                                                     ` Gregory Heytings
2022-11-26 16:51                                                                                                                                                                       ` Eli Zaretskii
2022-11-26 17:44                                                                                                                                                                         ` Eli Zaretskii
2022-11-26 22:42                                                                                                                                                                         ` Gregory Heytings
2022-11-27  1:10                                                                                                                                                                           ` Gregory Heytings
2022-08-05 14:16                                                       ` bug#56682: Fix the long lines font locking related slowdowns Eli Zaretskii
2022-08-05  8:23                                               ` Gregory Heytings
2022-08-05 12:19                                                 ` Dmitry Gutov
2022-08-05 14:18                                                   ` Eli Zaretskii
2022-08-02 16:02                                           ` Eli Zaretskii
2022-08-01 11:58                               ` Eli Zaretskii
2022-08-02  8:10                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02  8:22                                   ` Gregory Heytings
2022-08-02  9:25                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 10:00                                       ` Gregory Heytings
2022-08-02 21:40                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 22:14                                           ` Gregory Heytings
2022-08-03  8:39                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05 12:59                                 ` Dmitry Gutov
2022-08-05 14:20                                   ` Eli Zaretskii
2022-08-05 14:41                                     ` Dmitry Gutov
2022-08-05 15:33                                       ` Eli Zaretskii
2022-08-05 17:32                                         ` Dmitry Gutov
2022-08-05 18:09                                           ` Eli Zaretskii
2022-08-05 18:02                                         ` Dmitry Gutov
2022-08-05 18:14                                           ` Eli Zaretskii
2022-08-05 19:01                                             ` Dmitry Gutov
2022-08-05 19:14                                               ` Eli Zaretskii
2022-08-05 20:23                                                 ` Dmitry Gutov
2022-08-06  6:07                                                   ` Eli Zaretskii
2022-08-06 10:50                                                     ` Dmitry Gutov
2022-08-06 11:17                                                       ` Eli Zaretskii
2022-08-06 11:49                                                         ` Gregory Heytings
2022-08-06 11:50                                                           ` Gregory Heytings
2022-08-06 20:04                                                           ` Dmitry Gutov
2022-08-06 23:29                                                             ` Gregory Heytings
2022-08-07 11:14                                                               ` Dmitry Gutov
2022-08-06 20:59                                                         ` Dmitry Gutov
2022-08-07  0:11                                                       ` Gregory Heytings
2022-08-07 11:28                                                         ` Dmitry Gutov
2022-08-07 12:46                                                           ` Gregory Heytings
2022-08-07 17:40                                                             ` Dmitry Gutov
2022-08-07 20:21                                                               ` Gregory Heytings
2022-08-10  1:04                                                                 ` Dmitry Gutov
2022-08-10  7:47                                                                   ` Gregory Heytings
2022-08-10  8:48                                                                     ` Stephen Berman
2022-08-10  8:59                                                                       ` Gregory Heytings
2022-08-10  9:04                                                                         ` Gregory Heytings
2022-08-10  9:35                                                                           ` Stephen Berman
2022-08-10 10:34                                                                             ` Gregory Heytings
2022-08-10 10:55                                                                               ` Stephen Berman
2022-08-10 11:54                                                                                 ` Dmitry Gutov
2022-08-10 12:04                                                                                   ` Eli Zaretskii
2022-08-10 12:28                                                                                     ` Dmitry Gutov
2022-08-10 11:44                                                                               ` Eli Zaretskii
2022-08-10 11:59                                                                                 ` Stephen Berman
2022-08-10 12:16                                                                                   ` Eli Zaretskii
2022-08-10 12:31                                                                                 ` Gregory Heytings
2022-08-10 12:43                                                                                   ` Eli Zaretskii
2022-08-10 12:48                                                                                     ` Gregory Heytings
2022-08-10 13:04                                                                                       ` Stephen Berman
2022-08-10 13:11                                                                                         ` Gregory Heytings
2022-08-10 13:29                                                                                           ` Stephen Berman
2022-08-10 15:00                                                                                             ` Gregory Heytings
2022-08-10 15:44                                                                                     ` Dmitry Gutov
2022-08-10 16:08                                                                                       ` Eli Zaretskii
2022-08-10 17:02                                                                                         ` Dmitry Gutov
2022-08-10 17:19                                                                                           ` Eli Zaretskii
2022-08-10 18:54                                                                                             ` Dmitry Gutov
2022-08-10 19:13                                                                                               ` Eli Zaretskii
2022-08-07 17:41                                                           ` Dmitry Gutov
2022-08-09 21:03                                                             ` Gregory Heytings
2022-08-01 18:09                               ` Gregory Heytings
2022-08-02  8:12                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 22:03                         ` Dmitry Gutov
2022-07-31 22:23                           ` Gregory Heytings
2022-07-31 22:42                             ` Dmitry Gutov
2022-07-31 22:50                               ` Gregory Heytings
2022-07-31 23:21                                 ` Gregory Heytings
2022-08-01  1:23                                 ` Dmitry Gutov
2022-08-01 12:08                                   ` Eli Zaretskii
2022-08-02  1:05                                     ` Dmitry Gutov
2022-08-02  7:55                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 14:08                                         ` Dmitry Gutov
2022-08-02 12:35                                       ` Eli Zaretskii
2022-08-02 14:47                                         ` Dmitry Gutov
2022-08-02 15:06                                           ` Gregory Heytings
2022-08-02 21:51                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 16:11                                           ` Eli Zaretskii
2022-08-02 21:46                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03  2:33                                           ` Eli Zaretskii
2022-08-02 21:49                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 21:53                                           ` Gregory Heytings
2022-08-03  8:42                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-01 12:04                                 ` Eli Zaretskii
2022-08-01 12:20                                   ` Gregory Heytings
2022-08-01 13:04                                     ` Eli Zaretskii
2022-08-01 13:14                                       ` Gregory Heytings
2022-08-01 13:19                                         ` Eli Zaretskii
2022-08-01 13:34                                           ` Gregory Heytings
2022-08-01 21:50                                           ` Dmitry Gutov
2022-08-02  2:27                                             ` Eli Zaretskii
2022-08-02 14:10                                               ` Dmitry Gutov
2022-08-02 15:46                                                 ` Eli Zaretskii
2022-08-04  1:08                                                   ` Dmitry Gutov
2022-08-04  1:41                                                     ` Gregory Heytings
2022-08-05 12:28                                                       ` Dmitry Gutov
2022-08-04  7:45                                                     ` Eli Zaretskii
2022-08-02  7:51                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02  7:48                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 23:00                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 22:47                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 23:15                               ` Gregory Heytings
2022-08-01  7:02                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-01  8:38                                   ` Gregory Heytings
2022-08-01  9:34                                     ` Gregory Heytings
2022-08-01  9:46                                       ` Dmitry Gutov
2022-08-01  9:56                                         ` Gregory Heytings
2022-08-01 10:00                                           ` Gregory Heytings
2022-08-01 10:46                                           ` Dmitry Gutov
2022-08-01 11:01                                             ` Gregory Heytings
2022-08-02 14:53                                               ` Dmitry Gutov
2022-08-02 15:09                                                 ` Gregory Heytings
2022-08-02 21:19                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03  2:30                                                     ` Eli Zaretskii
2022-08-03  8:37                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03 12:08                                                         ` Eli Zaretskii
2022-08-03 20:38                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  5:40                                                             ` Eli Zaretskii
2022-08-04 22:35                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05  6:20                                                                 ` Eli Zaretskii
2022-08-05  9:03                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05 10:57                                                                     ` Eli Zaretskii
2022-08-05 12:06                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05 12:16                                                                         ` Gregory Heytings
2022-08-05 12:21                                                                           ` Dmitry Gutov
2022-08-05 12:42                                                                             ` Gregory Heytings
2022-08-05 13:05                                                                         ` Eli Zaretskii
2022-08-05 10:00                                                                 ` Gregory Heytings
2022-08-02 21:18                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 21:26                                                 ` Gregory Heytings
2022-08-02 22:26                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 22:52                                                     ` Gregory Heytings
2022-08-03  8:34                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03  9:04                                                         ` Gregory Heytings
2022-08-03 20:33                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03 21:37                                                             ` Gregory Heytings
2022-08-03 22:42                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  1:29                                                                 ` Gregory Heytings
2022-08-04  6:08                                                                 ` Eli Zaretskii
2022-08-04  6:23                                                                   ` Lars Ingebrigtsen
2022-08-04 11:21                                                                     ` Gregory Heytings
2022-08-03 22:10                                                             ` Gregory Heytings
2022-08-03 11:54                                                     ` Eli Zaretskii
2022-08-03 20:36                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  5:30                                                         ` Eli Zaretskii
2022-08-01 11:06                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-01 11:23                                         ` Gregory Heytings
2022-08-01 21:53                                           ` Dmitry Gutov
2022-08-02  7:34                                             ` Gregory Heytings
2022-08-02 11:07                                               ` Dmitry Gutov
2022-08-02 21:32                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 21:43                                             ` Gregory Heytings
2022-08-03 21:26                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03 21:42                                                 ` Gregory Heytings
2022-08-03 22:43                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  1:30                                                     ` Gregory Heytings
2022-08-04 21:24                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02  3:01                                       ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-30 13:17             ` Gregory Heytings
2022-07-27 11:18         ` Eli Zaretskii
2022-08-01 16:34 ` Eli Zaretskii
2022-08-01 16:49   ` Gregory Heytings
2022-08-01 17:08     ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2c8d6755-cfe2-6559-3fde-3fa30ffb411e@yandex.ru \
    --to=dgutov@yandex.ru \
    --cc=56682@debbugs.gnu.org \
    --cc=eliz@gnu.org \
    --cc=gregory@heytings.org \
    --cc=monnier@iro.umontreal.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).