aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love <[email protected]>2000-06-02 12:42:20 +0000
committerDave Love <[email protected]>2000-06-02 12:42:20 +0000
commitad44dffe8edbe6655430ae97155dcbc3841ebd4b (patch)
tree8995abcb5e9da27729c9a9e55da7a534d2535eda
parented5c183bc9f593a605224e500c2faf2135f385b2 (diff)
(internal_self_insert): Don't check
Vbefore_change_function, Vafter_change_function.
-rw-r--r--src/cmds.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cmds.c b/src/cmds.c
index f268865660..a9d4890c52 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\
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 @@ internal_self_insert (c, noautofill)
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. */