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:
parent
6e9517285f
commit
c82c1da05c
1 changed files with 4 additions and 4 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue