all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Gregory Heytings <gregory@heytings.org>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 56682@debbugs.gnu.org, monnier@iro.umontreal.ca, dgutov@yandex.ru
Subject: bug#56682: locked narrowing
Date: Thu, 01 Dec 2022 20:49:18 +0000	[thread overview]
Message-ID: <47153506021498df087c@heytings.org> (raw)
In-Reply-To: <83pmd3ioxx.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 4761 bytes --]


>
> I still don't understand why we need to look beyond the current 
> narrowing: we will never display anything outside of that.  Why should 
> we care about what happens in parts of the buffer that we don't display, 
> and thus cannot affect redisplay performance?
>

My plain English explanation is apparently not clear enough, so here is a 
recipe:

1. M-: (let ((large-file-warning-threshold nil)) (find-file "dictionary.json") (narrow-to-region 4000000 4004000)) RET
2. C-x n w
3. Kaboom!

>>> If we are going to narrow the buffer to PT ± N characters, then 
>>> searching inside slightly more than this region (say, twice more or 5 
>>> times more) should be enough, I think.  It might fail in some 
>>> borderline cases, but most files with very long lines have almost all 
>>> of their lines long, so I see no problem here.
>>
>> The intention when this detection mechanism was designed was explicitly 
>> to also support non-file visiting buffers, e.g. a shell buffer in which 
>> a user cat's a file with long lines.
>
> This takes a minor and insignificant aspect of the idea I presented and 
> ignores the main part.  Please respond to the main ideas, not to 
> inaccurate wording.
>

I'm sorry to hear you read it that way.  It was not my intention, and it's 
not insignificant: the point I wanted to make is that it's important to 
catch cases in which long lines are added into buffers that do not yet 
contain long lines.  So it's important to keep in mind that we're not only 
discussing _files_ with long lines, which is a case that could have been 
easily caught by adding a check at the moment the file is read in.

>
> And most buffers with very long lines in real life do come from files, 
> not from shell commands.  So even here you take a relatively rare use 
> case and make it more significant than it is.
>

That was a case that was explicitly discussed three months ago.  We cannot 
suddenly decide that it's an insignificant one, or a not significant 
enough one.  And I do agree that it's less common in real life to have 
long lines in comint buffers than to open files with long lines.  Another 
example is an interpreter outputting a (large enough) bignum.

>>> OTOH, "punishing" large buffers that have no long lines at all doesn't 
>>> strike me as a good balance.  Your proposed patch will solve a 
>>> particular use case, but it cannot solve all of them.
>>
>> Indeed, by definition no heuristic can solve all problems.
>
> I'm proposing what should be a better heuristic.
>

As far as I can tell, there are two possible ways to catch such 
situations:

1. The first one is to _not_ use a heuristic, and to check in _each_ 
redisplay cycle whether a certain portion of the buffer around point 
contains long lines.  This adds a fixed cost to all calls to redisplay, 
which four months ago did not seem TRT to do.

2. The second one is to use a heuristic, which is what we do now, and to 
check from time to time, when the buffer contents have changed "enough", 
whether the buffer now contains long lines.  When the buffer is edited 
with small changes between each redisplay cycle, which is what happens in 
the vast majority of cases, using that heuristic adds _no_ cost whatsoever 
to calls to redisplay.  The cost is added to only a few calls to 
redisplay, and it is not fixed anymore, it is more important for a large 
buffer than for a small one.  Doing that seemed TRT four months ago.

>
> That benchmark is an example of many use cases that can happen in real 
> life, in a large buffer with no long lines and a lot of editing 
> activity.  I'm surprised you don't see it.
>

I don't see it, indeed.  And I'm surprised that nobody complained about it 
during the last four months.  Do you have a recipe with which I could see 
that effect?  I just tried to edit dictionary-pp.json "heavily" (large 
kills and yanks), and Emacs remained responsive, I did not experience any 
hiccups.  Neither with emacs -Q nor with my config.  (Of course, that was 
with the patch applied.)

>
> The main issue at hand is how to avoid needless scanning of the entire 
> buffer for long lines, something which doesn't scale well with buffer 
> size. For very large buffers without any long lines, this is a 
> regression in Emacs 29, because Emacs 28 didn't do that.  IOW, we make 
> "good" buffers suffer because of the (rare) danger presented by 
> potentially "bad" buffers.  We need to look for ways of making this 
> degradation as small and as rare as possible.
>

Yes, it's a compromise.  As I explained above, the only other possible 
compromise that is safe enough is to make _all_ buffers "suffer" (but 
suffer less).

  reply	other threads:[~2022-12-01 20:49 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
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 [this message]
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

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

  git send-email \
    --in-reply-to=47153506021498df087c@heytings.org \
    --to=gregory@heytings.org \
    --cc=56682@debbugs.gnu.org \
    --cc=dgutov@yandex.ru \
    --cc=eliz@gnu.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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.