aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-08-07 17:53:17 +0000
committerKarl Heuer1995-08-07 17:53:17 +0000
commitc82c1da05cd80192812f3c33e63240d170686a03 (patch)
tree163eb46c8e681ba9352728f05147bd92f3024260 /src
parent6e9517285f9cc9bafec534bc3198cc0e099978bc (diff)
downloademacs-c82c1da05cd80192812f3c33e63240d170686a03.tar.gz
emacs-c82c1da05cd80192812f3c33e63240d170686a03.zip
(signal_before_change, signal_after_change): Fix
spelling of Vbefore_change_functions and Vafter_change_functions.
Diffstat (limited to 'src')
-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)
774 That way, if there's an error in them, they will stay nil. */ 774 That way, if there's an error in them, they will stay nil. */
775 before_change_functions = Vbefore_change_functions; 775 before_change_functions = Vbefore_change_functions;
776 after_change_functions = Vafter_change_functions; 776 after_change_functions = Vafter_change_functions;
777 Vbefore_change_function = Qnil; 777 Vbefore_change_functions = Qnil;
778 Vafter_change_function = Qnil; 778 Vafter_change_functions = Qnil;
779 GCPRO2 (before_change_functions, after_change_functions); 779 GCPRO2 (before_change_functions, after_change_functions);
780 780
781 /* Actually run the hook functions. */ 781 /* Actually run the hook functions. */
@@ -827,8 +827,8 @@ signal_after_change (pos, lendel, lenins)
827 That way, if there's an error in them, they will stay nil. */ 827 That way, if there's an error in them, they will stay nil. */
828 before_change_functions = Vbefore_change_functions; 828 before_change_functions = Vbefore_change_functions;
829 after_change_functions = Vafter_change_functions; 829 after_change_functions = Vafter_change_functions;
830 Vbefore_change_function = Qnil; 830 Vbefore_change_functions = Qnil;
831 Vafter_change_function = Qnil; 831 Vafter_change_functions = Qnil;
832 GCPRO2 (before_change_functions, after_change_functions); 832 GCPRO2 (before_change_functions, after_change_functions);
833 833
834 /* Actually run the hook functions. */ 834 /* Actually run the hook functions. */