From: Ihor Radchenko <yantar92@posteo.net>
To: Eli Zaretskii <eliz@gnu.org>
Cc: casouri@gmail.com, 65451@debbugs.gnu.org
Subject: bug#65451: 30.0.50; `after-change-functions' are not triggered in the same order the changes are made
Date: Tue, 29 Aug 2023 07:39:27 +0000 [thread overview]
Message-ID: <87o7iq1emo.fsf@localhost> (raw)
In-Reply-To: <83v8d0khvr.fsf@gnu.org>
Eli Zaretskii <eliz@gnu.org> writes:
>> Then, what about compacting the "edit list" more frequently, so that we
>> do not need to worry about its size? But I am not sure what frequency
>> will be safe.
>
> Something like that, yes. But we need to invent a protocol which
> would allow several clients to consume the list safely and without the
> risk of missing edits.
I can think of two approaches:
1. There will be a new buffer-local variable - `buffer-edit-history'
that will hold recent `buffer-edit-history-limit' edits. This way,
Elisp functions will be able to examine it any time they need to.
In addition, there will be `after-edit-functions' hook that will be
called after `buffer-edit-history-limit' is exceeded. Before the hook
is called, `buffer-edit-history' is truncated. The hook functions
will be called with a single argument - list of edits that have been
removed from the `buffer-undo-history'. That way, Elisp will be able
to process edits that will disappear from the `buffer-edit-history'.
Each entry in `buffer-edit-history' will be a list of
(beg end_before end_after counter), describing region boundaries
before and after the edit + a counter that can be used to keep track
of processed positions. The counter will be useful for the code that
processes `buffer-edit-history' independently, outside
`after-edit-functions', and may need to skip already processed
elements. (I initially though that we can simply hold
`buffer-chars-modified-tick' here, but it is not necessary to hold
`buffer-chars-modified-tick' specifically - just something to
indicate "epoch" in the edit history).
The downside of exposing `buffer-edit-history' is that some
bad-written Elisp may be tempted to hold a pointer to a cons cell in
`buffer-edit-history', thus preventing GC.
2. We can have `after-edit-functions' being called once for each edit
event with (beg end_before end_after) arguments.
To avoid skipping edits, in addition to Emacs sometimes calling the
hook, we should allow Elisp to trigger the hook early, by calling
`process-buffer-edits'. This way, synchronization can be ensured.
The downside here is when multiple consumers are using
`after-edit-functions' - synchronization (`process-buffer-edits')
requested by one consumer will also trigger all other consumers,
potentially creating extra overheads.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
next prev parent reply other threads:[~2023-08-29 7:39 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-22 9:30 bug#65451: 30.0.50; `after-change-functions' are not triggered in the same order the changes are made Ihor Radchenko
2023-08-22 12:22 ` Eli Zaretskii
2023-08-22 12:42 ` Ihor Radchenko
2023-08-22 12:58 ` Eli Zaretskii
2023-08-22 13:41 ` Ihor Radchenko
2023-08-22 16:02 ` Eli Zaretskii
2023-08-23 8:52 ` Ihor Radchenko
2023-08-23 17:58 ` Eli Zaretskii
2023-08-24 7:46 ` Ihor Radchenko
2023-08-24 8:08 ` Eli Zaretskii
2023-08-24 11:24 ` Ihor Radchenko
2023-08-24 12:08 ` Eli Zaretskii
2023-08-24 13:27 ` Ihor Radchenko
2023-08-24 14:53 ` Eli Zaretskii
2023-08-25 6:37 ` Eli Zaretskii
2023-08-25 9:09 ` Ihor Radchenko
2023-08-26 7:10 ` Eli Zaretskii
2023-08-27 8:13 ` Ihor Radchenko
2023-08-27 8:29 ` Eli Zaretskii
2023-08-29 7:39 ` Ihor Radchenko [this message]
2023-08-25 8:09 ` Ihor Radchenko
2023-08-25 10:25 ` Eli Zaretskii
2023-08-25 10:49 ` Ihor Radchenko
2024-03-30 13:51 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-30 14:11 ` Eli Zaretskii
2024-03-30 15:38 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-30 16:47 ` Eli Zaretskii
2024-03-31 3:04 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-31 3:02 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-03-31 6:06 ` Eli Zaretskii
2024-03-31 13:57 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-04-07 18:19 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-04-08 19:10 ` Ihor Radchenko
2024-04-07 18:19 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
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=87o7iq1emo.fsf@localhost \
--to=yantar92@posteo.net \
--cc=65451@debbugs.gnu.org \
--cc=casouri@gmail.com \
--cc=eliz@gnu.org \
/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).