Mercurial > emacs
changeset 29378:141820271eff
(internal_self_insert): Don't check
Vbefore_change_function, Vafter_change_function.
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 02 Jun 2000 12:42:20 +0000 |
parents | b614192b22ce |
children | ad856393dab2 |
files | src/cmds.c |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/cmds.c Fri Jun 02 03:19:24 2000 +0000 +++ b/src/cmds.c Fri Jun 02 12:42:20 2000 +0000 @@ -117,7 +117,6 @@ int opoint = PT, opoint_byte = PT_BYTE; int pos, pos_byte; int count, shortage; - int temp; if (NILP (n)) count = 1; @@ -349,8 +348,7 @@ int spaces_to_insert = 0; overwrite = current_buffer->overwrite_mode; - if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function) - || !NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions)) + if (!NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions)) hairy = 1; /* At first, get multi-byte form of C in STR. */