]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_buffer): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Tue, 24 Nov 1998 09:01:32 +0000 (09:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 24 Nov 1998 09:01:32 +0000 (09:01 +0000)
src/buffer.c

index 2d126681dbb1212cef5a3f40615c03946af20c85..9d5fb51c25875be6b7af6ee90eab012e675fbe2b 100644 (file)
@@ -4404,7 +4404,11 @@ don't call any before-change or after-change functions.\n\
 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 @@ don't call any before-change or after-change functions.\n\
 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,