Mercurial > emacs
changeset 12798:9ac61661054b
(signal_before_change, signal_after_change): Fix
spelling of Vbefore_change_functions and Vafter_change_functions.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 07 Aug 1995 17:53:17 +0000 |
parents | f0724d9d625e |
children | a252e42dabcc |
files | src/insdel.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/insdel.c Mon Aug 07 17:52:16 1995 +0000 +++ b/src/insdel.c Mon Aug 07 17:53:17 1995 +0000 @@ -774,8 +774,8 @@ 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 @@ 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. */