summaryrefslogtreecommitdiff
path: root/src/insdel.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-08-07 17:53:17 +0000
committerKarl Heuer <kwzh@gnu.org>1995-08-07 17:53:17 +0000
commitbe64528f0563018e0d8577963cbbeebd46ba7356 (patch)
treee9f8726b1c5c6fc4b20fbab8cb9949dd79d433cc /src/insdel.c
parent084b82e712ab06eb00935b21192b87dae617d076 (diff)
downloademacs-be64528f0563018e0d8577963cbbeebd46ba7356.tar.gz
(signal_before_change, signal_after_change): Fix
spelling of Vbefore_change_functions and Vafter_change_functions.
Diffstat (limited to 'src/insdel.c')
-rw-r--r--src/insdel.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/insdel.c b/src/insdel.c
index 24704015f77..2a6438b9bcb 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -774,8 +774,8 @@ signal_before_change (start, end)
That way, if there's an error in them, they will stay nil. */
before_change_functions = Vbefore_change_functions;
after_change_functions = Vafter_change_functions;
- Vbefore_change_function = Qnil;
- Vafter_change_function = Qnil;
+ Vbefore_change_functions = Qnil;
+ Vafter_change_functions = Qnil;
GCPRO2 (before_change_functions, after_change_functions);
/* Actually run the hook functions. */
@@ -827,8 +827,8 @@ signal_after_change (pos, lendel, lenins)
That way, if there's an error in them, they will stay nil. */
before_change_functions = Vbefore_change_functions;
after_change_functions = Vafter_change_functions;
- Vbefore_change_function = Qnil;
- Vafter_change_function = Qnil;
+ Vbefore_change_functions = Qnil;
+ Vafter_change_functions = Qnil;
GCPRO2 (before_change_functions, after_change_functions);
/* Actually run the hook functions. */