1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(signal_before_change, signal_after_change): Fix

spelling of Vbefore_change_functions and Vafter_change_functions.
This commit is contained in:
Karl Heuer 1995-08-07 17:53:17 +00:00
parent 6e9517285f
commit c82c1da05c

View 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. */