diff src/cmds.c @ 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 48cb03c9d1d8
children af049ea731e5
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.  */