* Unbalanced change hooks (part 1)
@ 2016-07-31 10:16 Alan Mackenzie
2016-08-01 20:13 ` Richard Copley
0 siblings, 1 reply; 4+ messages in thread
From: Alan Mackenzie @ 2016-07-31 10:16 UTC (permalink / raw)
To: emacs-devel; +Cc: Richard Copley, Óscar Fuentes
Hello, Emacs.
In certain buffer modifications, after-change-hooks is being called, yet
before-change-hooks is not being called. This is a Bad Thing, and is at
the root of bug #24074/#24094. The documentation (page "Change Hooks"
in the Elisp manual) is quite clear, if a little implicit, that both
hooks, or neither (when inhibit_modification_hooks is non-nil) get
called on a buffer modification.
The first of these problems is in Finsert_file_contents, where
before-change-hooks is invoked by a call to prepare_to_modify_buffer
(which calls signal_before_change), and after-change-hooks is invoked by
a call to signal_after_change.
Both of these invocations are conditional (which is correct), but
different conditions are applied to the before-... and after-...
invocations (which is not correct). The after-... condition tests both
parameters `visit' and `replace', but the before-... condition tests
only `visit'. It seems likely that the test on `replace' was added at a
later date, and it was mistakenly missed out of the before-...
condition.
I propose to amend Finsert_file_contents so that the same condition is
tested for the invocation of both hooks, and to enforce this by
recording the state in a bool variable. Comments on this proposed
change are requested:
diff --git a/src/fileio.c b/src/fileio.c
index b1f9d3c..0431cbc 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3440,6 +3440,7 @@ by calling `format-decode', which see. */)
/* SAME_AT_END_CHARPOS counts characters, because
restore_window_points needs the old character count. */
ptrdiff_t same_at_end_charpos = ZV;
+ bool run_change_hooks;
if (current_buffer->base_buffer && ! NILP (visit))
error ("Cannot do file visiting in an indirect buffer");
@@ -4077,7 +4078,9 @@ by calling `format-decode', which see. */)
/* For a special file, all we can do is guess. */
total = READ_BUF_SIZE;
- if (NILP (visit) && total > 0)
+ run_change_hooks = ((NILP (visit) || !NILP (replace))
+ && total > 0);
+ if (run_change_hooks)
{
if (!NILP (BVAR (current_buffer, file_truename))
/* Make binding buffer-file-name to nil effective. */
@@ -4313,8 +4316,7 @@ by calling `format-decode', which see. */)
/* Call after-change hooks for the inserted text, aside from the case
of normal visiting (not with REPLACE), which is done in a new buffer
"before" the buffer is changed. */
- if (inserted > 0 && total > 0
- && (NILP (visit) || !NILP (replace)))
+ if (run_change_hooks)
{
signal_after_change (PT, 0, inserted);
update_compositions (PT, PT, CHECK_BORDER);
Unfortunately, this amendment, by itself, doesn't fix #240[79]4, since
there are other causes for the change hooks being improperly invoked.
--
Alan Mackenzie (Nuremberg, Germany).
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: Unbalanced change hooks (part 1)
2016-07-31 10:16 Unbalanced change hooks (part 1) Alan Mackenzie
@ 2016-08-01 20:13 ` Richard Copley
2016-08-02 2:34 ` Eli Zaretskii
0 siblings, 1 reply; 4+ messages in thread
From: Richard Copley @ 2016-08-01 20:13 UTC (permalink / raw)
To: Alan Mackenzie; +Cc: Óscar Fuentes, Emacs Development
On 31 July 2016 at 11:16, Alan Mackenzie <acm@muc.de> wrote:
> Hello, Emacs.
>
> In certain buffer modifications, after-change-hooks is being called, yet
> before-change-hooks is not being called. This is a Bad Thing, and is at
> the root of bug #24074/#24094. The documentation (page "Change Hooks"
> in the Elisp manual) is quite clear, if a little implicit, that both
> hooks, or neither (when inhibit_modification_hooks is non-nil) get
> called on a buffer modification.
>
> The first of these problems is in Finsert_file_contents, where
> before-change-hooks is invoked by a call to prepare_to_modify_buffer
> (which calls signal_before_change), and after-change-hooks is invoked by
> a call to signal_after_change.
>
> Both of these invocations are conditional (which is correct), but
> different conditions are applied to the before-... and after-...
> invocations (which is not correct). The after-... condition tests both
> parameters `visit' and `replace', but the before-... condition tests
> only `visit'. It seems likely that the test on `replace' was added at a
> later date, and it was mistakenly missed out of the before-...
> condition.
>
> I propose to amend Finsert_file_contents so that the same condition is
> tested for the invocation of both hooks, and to enforce this by
> recording the state in a bool variable. Comments on this proposed
> change are requested:
>
>
>
> diff --git a/src/fileio.c b/src/fileio.c
> index b1f9d3c..0431cbc 100644
> --- a/src/fileio.c
> +++ b/src/fileio.c
> @@ -3440,6 +3440,7 @@ by calling `format-decode', which see. */)
> /* SAME_AT_END_CHARPOS counts characters, because
> restore_window_points needs the old character count. */
> ptrdiff_t same_at_end_charpos = ZV;
> + bool run_change_hooks;
>
> if (current_buffer->base_buffer && ! NILP (visit))
> error ("Cannot do file visiting in an indirect buffer");
> @@ -4077,7 +4078,9 @@ by calling `format-decode', which see. */)
> /* For a special file, all we can do is guess. */
> total = READ_BUF_SIZE;
>
> - if (NILP (visit) && total > 0)
> + run_change_hooks = ((NILP (visit) || !NILP (replace))
> + && total > 0);
> + if (run_change_hooks)
> {
> if (!NILP (BVAR (current_buffer, file_truename))
> /* Make binding buffer-file-name to nil effective. */
> @@ -4313,8 +4316,7 @@ by calling `format-decode', which see. */)
> /* Call after-change hooks for the inserted text, aside from the case
> of normal visiting (not with REPLACE), which is done in a new buffer
> "before" the buffer is changed. */
> - if (inserted > 0 && total > 0
> - && (NILP (visit) || !NILP (replace)))
> + if (run_change_hooks)
> {
> signal_after_change (PT, 0, inserted);
> update_compositions (PT, PT, CHECK_BORDER);
>
>
> Unfortunately, this amendment, by itself, doesn't fix #240[79]4, since
> there are other causes for the change hooks being improperly invoked.
>
> --
> Alan Mackenzie (Nuremberg, Germany).
LGTM. It's hard to imagine anyone relying on the before-change hooks
_not_ being run, so it should be safe, at least, to make this change.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Unbalanced change hooks (part 1)
2016-08-01 20:13 ` Richard Copley
@ 2016-08-02 2:34 ` Eli Zaretskii
2016-08-02 9:19 ` Richard Copley
0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2016-08-02 2:34 UTC (permalink / raw)
To: Richard Copley; +Cc: ofv, acm, emacs-devel
> From: Richard Copley <rcopley@gmail.com>
> Date: Mon, 1 Aug 2016 21:13:01 +0100
> Cc: Óscar Fuentes <ofv@wanadoo.es>,
> Emacs Development <emacs-devel@gnu.org>
>
> > diff --git a/src/fileio.c b/src/fileio.c
> > index b1f9d3c..0431cbc 100644
> > --- a/src/fileio.c
> > +++ b/src/fileio.c
> > @@ -3440,6 +3440,7 @@ by calling `format-decode', which see. */)
> > /* SAME_AT_END_CHARPOS counts characters, because
> > restore_window_points needs the old character count. */
> > ptrdiff_t same_at_end_charpos = ZV;
> > + bool run_change_hooks;
> >
> > if (current_buffer->base_buffer && ! NILP (visit))
> > error ("Cannot do file visiting in an indirect buffer");
> > @@ -4077,7 +4078,9 @@ by calling `format-decode', which see. */)
> > /* For a special file, all we can do is guess. */
> > total = READ_BUF_SIZE;
> >
> > - if (NILP (visit) && total > 0)
> > + run_change_hooks = ((NILP (visit) || !NILP (replace))
> > + && total > 0);
> > + if (run_change_hooks)
> > {
> > if (!NILP (BVAR (current_buffer, file_truename))
> > /* Make binding buffer-file-name to nil effective. */
> > @@ -4313,8 +4316,7 @@ by calling `format-decode', which see. */)
> > /* Call after-change hooks for the inserted text, aside from the case
> > of normal visiting (not with REPLACE), which is done in a new buffer
> > "before" the buffer is changed. */
> > - if (inserted > 0 && total > 0
> > - && (NILP (visit) || !NILP (replace)))
> > + if (run_change_hooks)
> > {
> > signal_after_change (PT, 0, inserted);
> > update_compositions (PT, PT, CHECK_BORDER);
> >
> >
> > Unfortunately, this amendment, by itself, doesn't fix #240[79]4, since
> > there are other causes for the change hooks being improperly invoked.
> >
> > --
> > Alan Mackenzie (Nuremberg, Germany).
>
> LGTM. It's hard to imagine anyone relying on the before-change hooks
> _not_ being run, so it should be safe, at least, to make this change.
That code is almost never run when REPLACE is non-nil, so doing that
won't help. See an earlier message that explained why.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Unbalanced change hooks (part 1)
2016-08-02 2:34 ` Eli Zaretskii
@ 2016-08-02 9:19 ` Richard Copley
0 siblings, 0 replies; 4+ messages in thread
From: Richard Copley @ 2016-08-02 9:19 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: Óscar Fuentes, Alan Mackenzie, Emacs Development
On 2 August 2016 at 03:34, Eli Zaretskii <eliz@gnu.org> wrote:
>> From: Richard Copley <rcopley@gmail.com>
>> Date: Mon, 1 Aug 2016 21:13:01 +0100
>> Cc: Óscar Fuentes <ofv@wanadoo.es>,
>> Emacs Development <emacs-devel@gnu.org>
>>
>> > diff --git a/src/fileio.c b/src/fileio.c
>> > index b1f9d3c..0431cbc 100644
>> > --- a/src/fileio.c
>> > +++ b/src/fileio.c
>> > @@ -3440,6 +3440,7 @@ by calling `format-decode', which see. */)
>> > /* SAME_AT_END_CHARPOS counts characters, because
>> > restore_window_points needs the old character count. */
>> > ptrdiff_t same_at_end_charpos = ZV;
>> > + bool run_change_hooks;
>> >
>> > if (current_buffer->base_buffer && ! NILP (visit))
>> > error ("Cannot do file visiting in an indirect buffer");
>> > @@ -4077,7 +4078,9 @@ by calling `format-decode', which see. */)
>> > /* For a special file, all we can do is guess. */
>> > total = READ_BUF_SIZE;
>> >
>> > - if (NILP (visit) && total > 0)
>> > + run_change_hooks = ((NILP (visit) || !NILP (replace))
>> > + && total > 0);
>> > + if (run_change_hooks)
>> > {
>> > if (!NILP (BVAR (current_buffer, file_truename))
>> > /* Make binding buffer-file-name to nil effective. */
>> > @@ -4313,8 +4316,7 @@ by calling `format-decode', which see. */)
>> > /* Call after-change hooks for the inserted text, aside from the case
>> > of normal visiting (not with REPLACE), which is done in a new buffer
>> > "before" the buffer is changed. */
>> > - if (inserted > 0 && total > 0
>> > - && (NILP (visit) || !NILP (replace)))
>> > + if (run_change_hooks)
>> > {
>> > signal_after_change (PT, 0, inserted);
>> > update_compositions (PT, PT, CHECK_BORDER);
>> >
>> >
>> > Unfortunately, this amendment, by itself, doesn't fix #240[79]4, since
>> > there are other causes for the change hooks being improperly invoked.
>> >
>> > --
>> > Alan Mackenzie (Nuremberg, Germany).
>>
>> LGTM. It's hard to imagine anyone relying on the before-change hooks
>> _not_ being run, so it should be safe, at least, to make this change.
>
> That code is almost never run when REPLACE is non-nil, so doing that
> won't help. See an earlier message that explained why.
Thanks Eli, I saw it. It's not the sort of discussion I care to get involved in.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-08-02 9:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-31 10:16 Unbalanced change hooks (part 1) Alan Mackenzie
2016-08-01 20:13 ` Richard Copley
2016-08-02 2:34 ` Eli Zaretskii
2016-08-02 9:19 ` Richard Copley
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.