From: Gerd Moellmann Date: Tue, 11 Sep 2001 12:32:50 +0000 (+0000) Subject: (with_echo_area_buffer): Bind inhibit-modification-hooks X-Git-Tag: emacs-pretest-21.0.106~148 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b04fa5fc9ffe5a8a2ec3545d5991fc9c013f8f7;p=emacs.git (with_echo_area_buffer): Bind inhibit-modification-hooks to t in addition to read-only. --- diff --git a/src/xdisp.c b/src/xdisp.c index 85d58dbd7fe..c0659ed26ff 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -6262,6 +6262,7 @@ with_echo_area_buffer (w, which, fn, a1, a2, a3, a4) current_buffer->undo_list = Qt; current_buffer->read_only = Qnil; specbind (Qinhibit_read_only, Qt); + specbind (Qinhibit_modification_hooks, Qt); if (clear_buffer_p && Z > BEG) del_range (BEG, Z);