# HG changeset patch # User Karl Heuer # Date 807817997 0 # Node ID 9ac61661054baa41285a80048b4b042f563eff65 # Parent f0724d9d625e97469d591c86b4f9f9728ddf17e9 (signal_before_change, signal_after_change): Fix spelling of Vbefore_change_functions and Vafter_change_functions. diff -r f0724d9d625e -r 9ac61661054b src/insdel.c --- 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. */