]> git.eshelyaron.com Git - emacs.git/commitdiff
(signal_before_change, signal_after_change): Fix
authorKarl Heuer <kwzh@gnu.org>
Mon, 7 Aug 1995 17:53:17 +0000 (17:53 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 7 Aug 1995 17:53:17 +0000 (17:53 +0000)
spelling of Vbefore_change_functions and Vafter_change_functions.

src/insdel.c

index 24704015f77292c56c6facdc21a1ed308c6bb86d..2a6438b9bcb85fa977b43ea7ef28b1fe56e98edd 100644 (file)
@@ -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.  */