aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/cmds.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cmds.c b/src/cmds.c
index f2688656600..a9d4890c525 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -117,7 +117,6 @@ With positive N, a non-empty line at the end counts as one line\n\
117 int opoint = PT, opoint_byte = PT_BYTE; 117 int opoint = PT, opoint_byte = PT_BYTE;
118 int pos, pos_byte; 118 int pos, pos_byte;
119 int count, shortage; 119 int count, shortage;
120 int temp;
121 120
122 if (NILP (n)) 121 if (NILP (n))
123 count = 1; 122 count = 1;
@@ -349,8 +348,7 @@ internal_self_insert (c, noautofill)
349 int spaces_to_insert = 0; 348 int spaces_to_insert = 0;
350 349
351 overwrite = current_buffer->overwrite_mode; 350 overwrite = current_buffer->overwrite_mode;
352 if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function) 351 if (!NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions))
353 || !NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions))
354 hairy = 1; 352 hairy = 1;
355 353
356 /* At first, get multi-byte form of C in STR. */ 354 /* At first, get multi-byte form of C in STR. */