From 27ea0af23ca52a123a12a70d9327a33ce0e85bd1 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 11 Sep 2001 12:31:56 +0000 Subject: [PATCH] (Qinhibit_modification_hooks): New variable. (syms_of_insdel): Initialize and staticpro it. --- src/insdel.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/insdel.c b/src/insdel.c index 99576218b4..134e8760ef 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -66,6 +66,9 @@ Lisp_Object combine_after_change_list; /* Buffer which combine_after_change_list is about. */ Lisp_Object combine_after_change_buffer; + +Lisp_Object Qinhibit_modification_hooks; + /* Check all markers in the current buffer, looking for something invalid. */ @@ -2159,6 +2162,8 @@ syms_of_insdel () This affects `before-change-functions' and `after-change-functions',\n\ as well as hooks attached to text properties and overlays."); inhibit_modification_hooks = 0; + Qinhibit_modification_hooks = intern ("inhibit-modification-hooks"); + staticpro (&Qinhibit_modification_hooks); defsubr (&Scombine_after_change_execute); } -- 2.20.1