]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_minibuf): Bind inhibit-modification-hooks to t,
authorGerd Moellmann <gerd@gnu.org>
Tue, 11 Sep 2001 13:09:15 +0000 (13:09 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 11 Sep 2001 13:09:15 +0000 (13:09 +0000)
in addition to read-only.

src/ChangeLog
src/minibuf.c

index da8b012b3ae7a9d976858d188df643744a21dd1b..c15cc1efc0caa236b26e5dc5b188123641f2af4f 100644 (file)
@@ -1,5 +1,16 @@
 2001-09-11  Gerd Moellmann  <gerd@gnu.org>
 
+       * minibuf.c (read_minibuf): Bind inhibit-modification-hooks to t,
+       in addition to read-only.
+
+       * xdisp.c (with_echo_area_buffer): Bind inhibit-modification-hooks
+       to t in addition to read-only.
+
+       * lisp.h (Qinhibit_modification_hooks): Declare.
+
+       * insdel.c (Qinhibit_modification_hooks): New variable.
+       (syms_of_insdel): Initialize and staticpro it.
+
        * textprop.c (verify_interval_modification): Don't run
        modification-hooks if inhibit_modification_hooks.
 
index a87127002bb2b3fba634382bde972e307dcbdf10..78c7c375f7d22d65e2fc13330140b63fb357ba94 100644 (file)
@@ -511,8 +511,9 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
 
   /* Erase the buffer.  */
   {
-    int count1 = specpdl_ptr - specpdl;
+    int count1 = BINDING_STACK_SIZE ();
     specbind (Qinhibit_read_only, Qt);
+    specbind (Qinhibit_modification_hooks, Qt);
     Ferase_buffer ();
     unbind_to (count1, Qnil);
   }