diff options
| author | Richard M. Stallman | 1994-04-10 02:34:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-10 02:34:21 +0000 |
| commit | 166a4263105e69daaf8127800c7e3e1dea026091 (patch) | |
| tree | 77fd0e61b1fd0ab8048dfd3b5dfa702248835139 /src/cmds.c | |
| parent | e45fb8bf247e6fcf74e02fb0132e733dd1b58373 (diff) | |
| download | emacs-166a4263105e69daaf8127800c7e3e1dea026091.tar.gz emacs-166a4263105e69daaf8127800c7e3e1dea026091.zip | |
(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) | |||
| 298 | Lisp_Object overwrite; | 298 | Lisp_Object overwrite; |
| 299 | 299 | ||
| 300 | overwrite = current_buffer->overwrite_mode; | 300 | overwrite = current_buffer->overwrite_mode; |
| 301 | if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function)) | 301 | if (!NILP (Vbefore_change_function) || !NILP (Vafter_change_function) |
| 302 | || !NILP (Vbefore_change_functions) || !NILP (Vafter_change_functions)) | ||
| 302 | hairy = 1; | 303 | hairy = 1; |
| 303 | 304 | ||
| 304 | if (!NILP (overwrite) | 305 | if (!NILP (overwrite) |