diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-10 02:34:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-10 02:34:21 +0000 |
commit | 166a4263105e69daaf8127800c7e3e1dea026091 (patch) | |
tree | 77fd0e61b1fd0ab8048dfd3b5dfa702248835139 /src/cmds.c | |
parent | e45fb8bf247e6fcf74e02fb0132e733dd1b58373 (diff) | |
download | emacs-166a4263105e69daaf8127800c7e3e1dea026091.tar.gz |
(internal_self_insert): Test Vafter_change_functions,
Vbefore_change_functions.
Diffstat (limited to 'src/cmds.c')
-rw-r--r-- | src/cmds.c | 3 |
1 files changed, 2 insertions, 1 deletions
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) |