Mercurial > emacs
diff src/buffer.c @ 23760:63e98b81cc29
(syms_of_buffer): Doc fix.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 24 Nov 1998 09:01:32 +0000 |
| parents | e80c5f687340 |
| children | 6ea9058180ec |
line wrap: on
line diff
--- a/src/buffer.c Tue Nov 24 08:56:27 1998 +0000 +++ b/src/buffer.c Tue Nov 24 09:01:32 1998 +0000 @@ -4404,7 +4404,11 @@ That's because these variables are temporarily set to nil.\n\ As a result, a hook function cannot straightforwardly alter the value of\n\ these variables. See the Emacs Lisp manual for a way of\n\ -accomplishing an equivalent result by using other variables."); +accomplishing an equivalent result by using other variables.\n\ +\n\ +If an unhandled error happens in running these functions,\n\ +the variable's value remains nil. That prevents the error\n\ +from happening repeatedly and making Emacs nonfunctional."); Vbefore_change_functions = Qnil; DEFVAR_LISP ("after-change-functions", &Vafter_change_functions, @@ -4421,8 +4425,11 @@ That's because these variables are temporarily set to nil.\n\ As a result, a hook function cannot straightforwardly alter the value of\n\ these variables. See the Emacs Lisp manual for a way of\n\ -accomplishing an equivalent result by using other variables."); - +accomplishing an equivalent result by using other variables.\n\ +\n\ +If an unhandled error happens in running these functions,\n\ +the variable's value remains nil. That prevents the error\n\ +from happening repeatedly and making Emacs nonfunctional."); Vafter_change_functions = Qnil; DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,
