mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-29 08:31:35 -08:00
(verify_interval_modification): Don't run
modification-hooks if inhibit_modification_hooks.
This commit is contained in:
parent
4e1513b594
commit
d4881c6acb
2 changed files with 10 additions and 2 deletions
|
|
@ -1,5 +1,12 @@
|
|||
2001-09-11 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* textprop.c (verify_interval_modification): Don't run
|
||||
modification-hooks if inhibit_modification_hooks.
|
||||
|
||||
* dispnew.c (set_window_cursor_after_update): Fix code
|
||||
finding glyph row containing cursor when cursor_in_echo_area
|
||||
is >= 0.
|
||||
|
||||
* xdisp.c (init_from_display_pos): Put some code in #if 0.
|
||||
(add_to_log): Use bcopy instead of strcpy.
|
||||
(init_from_display_pos): Use an explicit loop over bytes in
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
/* Interface code for dealing with text properties.
|
||||
Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Emacs.
|
||||
|
||||
|
|
@ -1901,7 +1902,7 @@ verify_interval_modification (buf, start, end)
|
|||
interval_insert_in_front_hooks
|
||||
= textget (i->plist, Qinsert_in_front_hooks);
|
||||
}
|
||||
else
|
||||
else if (!inhibit_modification_hooks)
|
||||
{
|
||||
/* Loop over intervals on or next to START...END,
|
||||
collecting their hooks. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue