GNU bug report logs -
#25111
How modification-hooks let-bind inhibit-modification-hooks?
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#25111: How modification-hooks let-bind inhibit-modification-hooks?
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 25111 <at> debbugs.gnu.org.
--
25111: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25111
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hello, Noam.
On Mon, Jun 24, 2019 at 18:48:14 -0400, Noam Postavsky wrote:
> Alan Mackenzie <acm <at> muc.de> writes:
[ .... ]
> > I think the changes as now formulated are right. Perhaps one or
> > both of you might like to give the following patch a quick review.
> > Thanks!
> Minor formatting nitpick:
> > +++ b/doc/lispref/display.texi
> > @@ -1752,9 +1752,12 @@ Overlay Properties
> > +When these functions are called, @code{inhibit-modification-hooks} is
> > +bound to non-@code{nil}. If the functions modify the buffer, you
> > +might want to bind @code{inhibit-modification-hooks} to nil, so as to
> ^^^
> > +cause the change hooks to run for these modifications. However, doing
> > +this may call your own change hook recursively, so be sure to prepare
> > +for that. @xref{Change Hooks}.
> > +++ b/doc/lispref/text.texi
> > @@ -3639,6 +3642,13 @@ Special Properties
> > beginning and end of the inserted text. The functions are called
> > @emph{after} the actual insertion takes place.
> > +When these functions are called, @code{inhibit-modification-hooks} is
> > +bound to non-@code{nil}. If the functions modify the buffer, you
> > +might want to bind @code{inhibit-modification-hooks} to nil, so as to
> ^^^
> @code{nil} for both of these, right? Otherwise looks good to me.
Whoops! Thanks for spotting these.
I've fixed them and committed the changes. I'm closing the bug with
this post.
--
Alan Mackenzie (Nuremberg, Germany).
[Message part 3 (message/rfc822, inline)]
The documentation for "modification-hooks" on overlays says:
If these functions modify the buffer, they should bind
‘inhibit-modification-hooks’ to ‘t’ around doing so, to avoid
confusing the internal mechanism that calls these hooks.
But as far as I can see, the only place these gets called
"signal_after_change"
and "signal_before_change", inhibit-modification-hooks is already specbound
to t, so this advice is unnecessary.
Also, the documentation for inhibit-modification-hooks says:
If you do want modification hooks to be run in a particular
piece of code that is itself run from a modification hook, then
rebind locally ‘inhibit-modification-hooks’ to ‘nil’.
which suggests that, in fact, it is possible to call the modification
hooks from inside another call to these functions.
This is true for both emacs-25 and master.
This bug report was last modified 6 years and 29 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.