comparison src/insdel.c @ 25579:5662c18836ae

(syms_of_insdel): Define Lisp variable inhibit-modification-hooks.
author Richard M. Stallman <rms@gnu.org>
date Tue, 07 Sep 1999 03:25:35 +0000
parents d1fbe67c3f69
children a48ea135fed4
comparison
equal deleted inserted replaced
25578:4c9cf2c63703 25579:5662c18836ae
2725 check_markers_debug_flag = 0; 2725 check_markers_debug_flag = 0;
2726 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls, 2726 DEFVAR_LISP ("combine-after-change-calls", &Vcombine_after_change_calls,
2727 "Used internally by the `combine-after-change-calls' macro."); 2727 "Used internally by the `combine-after-change-calls' macro.");
2728 Vcombine_after_change_calls = Qnil; 2728 Vcombine_after_change_calls = Qnil;
2729 2729
2730 DEFVAR_BOOL ("inhibit-modification-hooks", &inhibit_modification_hooks,
2731 "Non-nil means don't run any of the hooks that respond to buffer changes.\n\
2732 This affects `before-change-functions' and `after-change-functions',\n\
2733 as well as hooks attached to text properties and overlays.");
2734 inhibit_modification_hooks = 0;
2735
2730 defsubr (&Scombine_after_change_execute); 2736 defsubr (&Scombine_after_change_execute);
2731 } 2737 }