From 166a4263105e69daaf8127800c7e3e1dea026091 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 10 Apr 1994 02:34:21 +0000 Subject: [PATCH] (internal_self_insert): Test Vafter_change_functions, Vbefore_change_functions. --- src/cmds.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cmds.c b/src/cmds.c index b6411d4bfe1..99035c36f1e 100644 --- a/src/cmds.c +++ b/src/cmds.c @@ -298,7 +298,8 @@ internal_self_insert (c1, noautofill) Lisp_Object overwrite; overwrite = current_buffer->overwrite_mode; - if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function)) + if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function) + || !NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions)) hairy = 1; if (!NILP (overwrite) -- 2.39.5