unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: Stefan Monnier via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: Gregory Heytings <gregory@heytings.org>
Cc: 56682@debbugs.gnu.org, Eli Zaretskii <eliz@gnu.org>, dgutov@yandex.ru
Subject: bug#56682: locked narrowing
Date: Tue, 16 Aug 2022 16:57:05 -0400	[thread overview]
Message-ID: <jwvo7wk5442.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <325f95fd2b8688c3aa74@heytings.org> (Gregory Heytings's message of "Tue, 16 Aug 2022 19:39:21 +0000")

Gregory Heytings [2022-08-16 19:39:21] wrote:
>> [ Sorry, Gregory.  But see below for more concrete/constructive
>>   criticism. ]
> Perhaps I misuderstood or overlooked something in what you said
> earlier, but to me your objection to that part of the code until now
> was mainly/purely "philosophical".

My *main* objection is in the not-overridable part of the design, yes
(i.e. philosophical).  The rest is just a minor question of coding.

>> - The locking is global: any `widen` or `narrow-to-region` will fail when
>> a locked narrowing is in effect, even when it's applied to an unrelated
>> buffer.  Again, it looks like a plain bug, but...
> It's not global, given that it is controlled by symbol that is bound within
> a function called inside a specific buffer.

Which buffer is current when the let-binding is installed has no
influence on the behavior because the variable is not buffer-local
(i.e. it's global, which is why the effect is global).
The dynamic scope means that the effect is limited *in time* (and only
applies to the current thread, admittedly), but it's still global in the
sense that it affects all the code that is run during this time, no
matter where it is executed (or were it was written).

But, yes, dynamically scoped variables are often described as being
"locally bound", even though the effect of that binding is global in the
sense that it applies everywhere while active, so there's plenty of
opportunities for confusion with this terminology :-(

> But indeed, if inside that
> function we use narrow-to-region/widen in another buffer, that would fail.
> It seems easy to correct that bug, though: if
> (current_buffer->long_line_optimizations_p && ! NILP (Vrestrictions_locked))

If `current_buffer` is not the one that's currently being narrowed by
redisplay, then `->long_line_optimizations_p` doesn't say that
`current_buffer` has been narrowed by "us", so such a fix might work but
I think a better fix is to `Fmake_local_variable` before calling
`specbind` so that it really states clearly that this lock applies only
to the narrowing installed in this particular buffer.

>> - The doc for `restrictions-locked` says:
>>
>>  This happens when `narrow-to-region', which see, is called from Lisp
>>  with an optional argument LOCK non-nil.
>>
>>  but the `narrow-to-region` function doesn't have any such LOCK argument.
>
> That should have been removed, indeed.  In a previous iteration of the code
> a LOCK argument was added to that function, and later removed.

Adding such a LOCK argument might be a good idea, actually, since ELisp
packages may also want to impose restrictions on widening (see my recent
message to `emacs-devel` about ELisp support for locked narrowing).

>> - The `narrow_to_region_internal` function, when called with `lock=true`
>> oddly includes the functionality of save-restriction to restore the
>> restriction and point but not to restore the `restrictions-locked` state.
>
> This I do not understand.  The comment above that function explains that it
> should be followed by "specbind (Qrestrictions_locked, Qt)".  There is no
> need to restore the restrictions-locked state, or am
> I misunderstanding something?

Why leave the `specbind (Qrestrictions_locked, Qt)` out of the function
when you've already included the 3 calls to `record_unwind_protect`?
The 4 share the same requirements (because `specbind` pushes on the
`specpdl`, just like `record_unwind_protect`).  They naturally
belong together.

Also, a function that sometimes pushes to `specpdl` (and hence requires
the caller to do the `SPECPDL_INDEX + unbind_to` dance) and sometimes
not, depending on some value of its argument is a bit unnatural (it
complicates the reasoning when we try and convince ourselves that the
stack discipline of the specpdl is obeyed).  So I'd recommend you split
the function into two: a first one that only does the narrowing itself
and a second one which calls the first plus unconditionally does the
`specbind+record_unwind_protect`.

>> - In that same function the two branches of the `if (lock)` have a lot of
>> obvious redundancy.
> Not "a lot", but indeed there's some redundancy there that could have
> been avoided.

AFAICT it's more than half of the code of each branch.


        Stefan






  reply	other threads:[~2022-08-16 20:57 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                                                                                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2022-08-16 21:18                                                                                                                                     ` bug#56682: locked narrowing Gregory Heytings
2022-08-16 20:23                                                                                                                                 ` bug#56682: locked narrowing (was: bug#56682: Fix the long lines font locking related slowdowns) Gregory Heytings
2022-08-16 21:42                                                                                                                                   ` bug#56682: locked narrowing Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-16 21:50                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 11:28                                                                                                                                 ` bug#56682: locked narrowing (was: bug#56682: Fix the long lines font locking related slowdowns) Eli Zaretskii
2022-08-17 13:06                                                                                                                                   ` bug#56682: locked narrowing Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 13:30                                                                                                                                     ` Eli Zaretskii
2022-08-17 13:50                                                                                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 13:59                                                                                                                                         ` Eli Zaretskii
2022-08-17 14:11                                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 14:25                                                                                                                                             ` Eli Zaretskii
2022-08-17 15:58                                                                                                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 16:52                                                                                                                                                 ` Eli Zaretskii
2022-08-17 17:09                                                                                                                                                   ` Eli Zaretskii
2022-08-17 19:38                                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 17:58                                                                                                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 18:29                                                                                                                                                     ` Eli Zaretskii
2022-08-17 19:09                                                                                                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 19:19                                                                                                                                                         ` Eli Zaretskii
2022-08-17 20:04                                                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 18:33                                                                                                                                                     ` Eli Zaretskii
2022-08-17 19:18                                                                                                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-17 19:24                                                                                                                                                         ` Eli Zaretskii
2022-08-17 20:09                                                                                                                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-18  5:19                                                                                                                                                             ` Eli Zaretskii
2022-08-20 16:20                                                                                                                                                               ` Gregory Heytings
2022-08-20 17:12                                                                                                                                                                 ` Eli Zaretskii
2022-08-20 17:21                                                                                                                                                                 ` Eli Zaretskii
2022-08-20 17:44                                                                                                                                                                   ` Gregory Heytings
2022-10-18 16:30                                                                                                                                                                 ` Dmitry Gutov
2022-11-26 14:14                                                                                                                                                                   ` Gregory Heytings
2022-11-29  3:20                                                                                                                                                                     ` Dmitry Gutov
2022-11-29 12:47                                                                                                                                                                       ` Eli Zaretskii
2022-11-29 13:21                                                                                                                                                                         ` Dmitry Gutov
2022-11-29 14:25                                                                                                                                                                           ` Eli Zaretskii
     [not found]                                                                                                                                                                             ` <444288a4-b51a-9544-2e60-d28b0aa2bb75@yandex.ru>
2022-11-29 15:47                                                                                                                                                                               ` Eli Zaretskii
2022-11-29 17:10                                                                                                                                                                       ` Gregory Heytings
2022-11-29 17:56                                                                                                                                                                         ` Dmitry Gutov
2022-11-29 18:19                                                                                                                                                                           ` Eli Zaretskii
2022-11-29 19:29                                                                                                                                                                             ` Dmitry Gutov
2022-11-29 19:51                                                                                                                                                                               ` Eli Zaretskii
2022-11-29 20:36                                                                                                                                                                                 ` Dmitry Gutov
2022-11-29 20:11                                                                                                                                                                           ` Gregory Heytings
2022-11-29 20:47                                                                                                                                                                             ` Dmitry Gutov
2022-11-29 20:59                                                                                                                                                                               ` Gregory Heytings
2022-11-30  0:15                                                                                                                                                                                 ` Gregory Heytings
2022-11-30  0:47                                                                                                                                                                                   ` Dmitry Gutov
2022-11-30 10:00                                                                                                                                                                                     ` Gregory Heytings
2022-11-30  3:42                                                                                                                                                                                   ` Eli Zaretskii
2022-11-30 10:11                                                                                                                                                                                     ` Gregory Heytings
2022-11-30 14:04                                                                                                                                                                                       ` Eli Zaretskii
2022-11-30 14:40                                                                                                                                                                                         ` Gregory Heytings
2022-11-30 15:31                                                                                                                                                                                           ` Eli Zaretskii
2022-11-30 22:09                                                                                                                                                                                             ` Gregory Heytings
2022-12-01  7:05                                                                                                                                                                                               ` Eli Zaretskii
2022-12-01 20:49                                                                                                                                                                                                 ` Gregory Heytings
2022-12-01 20:52                                                                                                                                                                                                   ` Gregory Heytings
2022-12-01 21:14                                                                                                                                                                                                   ` Eli Zaretskii
2022-12-01 21:36                                                                                                                                                                                                     ` Gregory Heytings
2022-12-01 21:43                                                                                                                                                                                                       ` Eli Zaretskii
2022-12-01 22:05                                                                                                                                                                                                         ` dick
2022-12-01 22:23                                                                                                                                                                                                         ` Gregory Heytings
2022-12-01 23:11                                                                                                                                                                                                           ` Gregory Heytings
2022-12-01 23:48                                                                                                                                                                                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  0:24                                                                                                                                                                                                               ` Gregory Heytings
2022-12-02  2:52                                                                                                                                                                                                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  8:04                                                                                                                                                                                                                   ` Eli Zaretskii
2022-12-02  8:08                                                                                                                                                                                                                     ` Gregory Heytings
2022-12-02 14:10                                                                                                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  8:54                                                                                                                                                                                                                   ` Gregory Heytings
2022-12-02 14:13                                                                                                                                                                                                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-12-02  7:49                                                                                                                                                                                                               ` Eli Zaretskii
2022-12-02  8:04                                                                                                                                                                                                                 ` Gregory Heytings
2022-12-02  8:57                                                                                                                                                                                                                   ` Eli Zaretskii
2022-12-02  9:16                                                                                                                                                                                                                     ` Gregory Heytings
2022-12-02 12:02                                                                                                                                                                                                                       ` Eli Zaretskii
2022-12-02  7:05                                                                                                                                                                                                           ` Eli Zaretskii
2022-12-02  7:56                                                                                                                                                                                                             ` Gregory Heytings
2022-12-02  8:51                                                                                                                                                                                                               ` Eli Zaretskii
2022-12-02  9:14                                                                                                                                                                                                                 ` Gregory Heytings
2022-12-01 21:15                                                                                                                                                                                                   ` Gregory Heytings
2022-11-30 15:21                                                                                                                                                                                       ` Dmitry Gutov
2022-11-30 13:19                                                                                                                                                                                   ` Eli Zaretskii
2022-11-30 13:52                                                                                                                                                                                     ` Gregory Heytings
2022-11-30 15:03                                                                                                                                                                                       ` Eli Zaretskii
2022-11-29 18:16                                                                                                                                                                         ` Eli Zaretskii
2022-11-30 16:34                                                                                                                                                                     ` Juri Linkov
2022-11-30 17:34                                                                                                                                                                       ` Eli Zaretskii
2022-12-06 17:14                                                                                                                                                                       ` Juri Linkov
2022-12-06 20:11                                                                                                                                                                         ` Gregory Heytings
2022-12-07  7:52                                                                                                                                                                           ` Juri Linkov
     [not found]                                                                                                                                                                 ` <5faa8871-e809-8750-325a-991a71e76639@yandex.ru>
2022-10-19 17:49                                                                                                                                                                   ` Gregory Heytings
     [not found]                                                                                                                                                                 ` <f3c1c37c495f2b2af64f@heytings.org>
2022-11-26  2:53                                                                                                                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-11-26 10:08                                                                                                                                                                   ` Eli Zaretskii
2022-11-26 16:15                                                                                                                                                                     ` Gregory Heytings
2022-11-26 16:51                                                                                                                                                                       ` Eli Zaretskii
2022-11-26 17:44                                                                                                                                                                         ` Eli Zaretskii
2022-11-26 22:42                                                                                                                                                                         ` Gregory Heytings
2022-11-27  1:10                                                                                                                                                                           ` Gregory Heytings
2022-08-05 14:16                                                       ` bug#56682: Fix the long lines font locking related slowdowns Eli Zaretskii
2022-08-05  8:23                                               ` Gregory Heytings
2022-08-05 12:19                                                 ` Dmitry Gutov
2022-08-05 14:18                                                   ` Eli Zaretskii
2022-08-02 16:02                                           ` Eli Zaretskii
2022-08-01 11:58                               ` Eli Zaretskii
2022-08-02  8:10                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02  8:22                                   ` Gregory Heytings
2022-08-02  9:25                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 10:00                                       ` Gregory Heytings
2022-08-02 21:40                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 22:14                                           ` Gregory Heytings
2022-08-03  8:39                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05 12:59                                 ` Dmitry Gutov
2022-08-05 14:20                                   ` Eli Zaretskii
2022-08-05 14:41                                     ` Dmitry Gutov
2022-08-05 15:33                                       ` Eli Zaretskii
2022-08-05 17:32                                         ` Dmitry Gutov
2022-08-05 18:09                                           ` Eli Zaretskii
2022-08-05 18:02                                         ` Dmitry Gutov
2022-08-05 18:14                                           ` Eli Zaretskii
2022-08-05 19:01                                             ` Dmitry Gutov
2022-08-05 19:14                                               ` Eli Zaretskii
2022-08-05 20:23                                                 ` Dmitry Gutov
2022-08-06  6:07                                                   ` Eli Zaretskii
2022-08-06 10:50                                                     ` Dmitry Gutov
2022-08-06 11:17                                                       ` Eli Zaretskii
2022-08-06 11:49                                                         ` Gregory Heytings
2022-08-06 11:50                                                           ` Gregory Heytings
2022-08-06 20:04                                                           ` Dmitry Gutov
2022-08-06 23:29                                                             ` Gregory Heytings
2022-08-07 11:14                                                               ` Dmitry Gutov
2022-08-06 20:59                                                         ` Dmitry Gutov
2022-08-07  0:11                                                       ` Gregory Heytings
2022-08-07 11:28                                                         ` Dmitry Gutov
2022-08-07 12:46                                                           ` Gregory Heytings
2022-08-07 17:40                                                             ` Dmitry Gutov
2022-08-07 20:21                                                               ` Gregory Heytings
2022-08-10  1:04                                                                 ` Dmitry Gutov
2022-08-10  7:47                                                                   ` Gregory Heytings
2022-08-10  8:48                                                                     ` Stephen Berman
2022-08-10  8:59                                                                       ` Gregory Heytings
2022-08-10  9:04                                                                         ` Gregory Heytings
2022-08-10  9:35                                                                           ` Stephen Berman
2022-08-10 10:34                                                                             ` Gregory Heytings
2022-08-10 10:55                                                                               ` Stephen Berman
2022-08-10 11:54                                                                                 ` Dmitry Gutov
2022-08-10 12:04                                                                                   ` Eli Zaretskii
2022-08-10 12:28                                                                                     ` Dmitry Gutov
2022-08-10 11:44                                                                               ` Eli Zaretskii
2022-08-10 11:59                                                                                 ` Stephen Berman
2022-08-10 12:16                                                                                   ` Eli Zaretskii
2022-08-10 12:31                                                                                 ` Gregory Heytings
2022-08-10 12:43                                                                                   ` Eli Zaretskii
2022-08-10 12:48                                                                                     ` Gregory Heytings
2022-08-10 13:04                                                                                       ` Stephen Berman
2022-08-10 13:11                                                                                         ` Gregory Heytings
2022-08-10 13:29                                                                                           ` Stephen Berman
2022-08-10 15:00                                                                                             ` Gregory Heytings
2022-08-10 15:44                                                                                     ` Dmitry Gutov
2022-08-10 16:08                                                                                       ` Eli Zaretskii
2022-08-10 17:02                                                                                         ` Dmitry Gutov
2022-08-10 17:19                                                                                           ` Eli Zaretskii
2022-08-10 18:54                                                                                             ` Dmitry Gutov
2022-08-10 19:13                                                                                               ` Eli Zaretskii
2022-08-07 17:41                                                           ` Dmitry Gutov
2022-08-09 21:03                                                             ` Gregory Heytings
2022-08-01 18:09                               ` Gregory Heytings
2022-08-02  8:12                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 22:03                         ` Dmitry Gutov
2022-07-31 22:23                           ` Gregory Heytings
2022-07-31 22:42                             ` Dmitry Gutov
2022-07-31 22:50                               ` Gregory Heytings
2022-07-31 23:21                                 ` Gregory Heytings
2022-08-01  1:23                                 ` Dmitry Gutov
2022-08-01 12:08                                   ` Eli Zaretskii
2022-08-02  1:05                                     ` Dmitry Gutov
2022-08-02  7:55                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 14:08                                         ` Dmitry Gutov
2022-08-02 12:35                                       ` Eli Zaretskii
2022-08-02 14:47                                         ` Dmitry Gutov
2022-08-02 15:06                                           ` Gregory Heytings
2022-08-02 21:51                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 16:11                                           ` Eli Zaretskii
2022-08-02 21:46                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03  2:33                                           ` Eli Zaretskii
2022-08-02 21:49                                         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 21:53                                           ` Gregory Heytings
2022-08-03  8:42                                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-01 12:04                                 ` Eli Zaretskii
2022-08-01 12:20                                   ` Gregory Heytings
2022-08-01 13:04                                     ` Eli Zaretskii
2022-08-01 13:14                                       ` Gregory Heytings
2022-08-01 13:19                                         ` Eli Zaretskii
2022-08-01 13:34                                           ` Gregory Heytings
2022-08-01 21:50                                           ` Dmitry Gutov
2022-08-02  2:27                                             ` Eli Zaretskii
2022-08-02 14:10                                               ` Dmitry Gutov
2022-08-02 15:46                                                 ` Eli Zaretskii
2022-08-04  1:08                                                   ` Dmitry Gutov
2022-08-04  1:41                                                     ` Gregory Heytings
2022-08-05 12:28                                                       ` Dmitry Gutov
2022-08-04  7:45                                                     ` Eli Zaretskii
2022-08-02  7:51                                     ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02  7:48                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 23:00                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 22:47                             ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-31 23:15                               ` Gregory Heytings
2022-08-01  7:02                                 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-01  8:38                                   ` Gregory Heytings
2022-08-01  9:34                                     ` Gregory Heytings
2022-08-01  9:46                                       ` Dmitry Gutov
2022-08-01  9:56                                         ` Gregory Heytings
2022-08-01 10:00                                           ` Gregory Heytings
2022-08-01 10:46                                           ` Dmitry Gutov
2022-08-01 11:01                                             ` Gregory Heytings
2022-08-02 14:53                                               ` Dmitry Gutov
2022-08-02 15:09                                                 ` Gregory Heytings
2022-08-02 21:19                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03  2:30                                                     ` Eli Zaretskii
2022-08-03  8:37                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03 12:08                                                         ` Eli Zaretskii
2022-08-03 20:38                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  5:40                                                             ` Eli Zaretskii
2022-08-04 22:35                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05  6:20                                                                 ` Eli Zaretskii
2022-08-05  9:03                                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05 10:57                                                                     ` Eli Zaretskii
2022-08-05 12:06                                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-05 12:16                                                                         ` Gregory Heytings
2022-08-05 12:21                                                                           ` Dmitry Gutov
2022-08-05 12:42                                                                             ` Gregory Heytings
2022-08-05 13:05                                                                         ` Eli Zaretskii
2022-08-05 10:00                                                                 ` Gregory Heytings
2022-08-02 21:18                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 21:26                                                 ` Gregory Heytings
2022-08-02 22:26                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 22:52                                                     ` Gregory Heytings
2022-08-03  8:34                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03  9:04                                                         ` Gregory Heytings
2022-08-03 20:33                                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03 21:37                                                             ` Gregory Heytings
2022-08-03 22:42                                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  1:29                                                                 ` Gregory Heytings
2022-08-04  6:08                                                                 ` Eli Zaretskii
2022-08-04  6:23                                                                   ` Lars Ingebrigtsen
2022-08-04 11:21                                                                     ` Gregory Heytings
2022-08-03 22:10                                                             ` Gregory Heytings
2022-08-03 11:54                                                     ` Eli Zaretskii
2022-08-03 20:36                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  5:30                                                         ` Eli Zaretskii
2022-08-01 11:06                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-01 11:23                                         ` Gregory Heytings
2022-08-01 21:53                                           ` Dmitry Gutov
2022-08-02  7:34                                             ` Gregory Heytings
2022-08-02 11:07                                               ` Dmitry Gutov
2022-08-02 21:32                                           ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02 21:43                                             ` Gregory Heytings
2022-08-03 21:26                                               ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-03 21:42                                                 ` Gregory Heytings
2022-08-03 22:43                                                   ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-04  1:30                                                     ` Gregory Heytings
2022-08-04 21:24                                                       ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-08-02  3:01                                       ` Po Lu via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-07-30 13:17             ` Gregory Heytings
2022-07-27 11:18         ` Eli Zaretskii
2022-08-01 16:34 ` Eli Zaretskii
2022-08-01 16:49   ` Gregory Heytings
2022-08-01 17:08     ` Eli Zaretskii

Reply instructions:

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

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

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

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

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

  git send-email \
    --in-reply-to=jwvo7wk5442.fsf-monnier+emacs@gnu.org \
    --to=bug-gnu-emacs@gnu.org \
    --cc=56682@debbugs.gnu.org \
    --cc=dgutov@yandex.ru \
    --cc=eliz@gnu.org \
    --cc=gregory@heytings.org \
    --cc=monnier@iro.umontreal.ca \
    /path/to/YOUR_REPLY

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

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

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

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