aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1998-11-24 09:01:32 +0000
committerRichard M. Stallman1998-11-24 09:01:32 +0000
commit9ebc22d43e28f579c9ee32e92a9f00ff742f215c (patch)
tree5fc10d2aabe93c75a2bbda6ee86876ae2edee28f /src/buffer.c
parent307958d6cbef7ed8d412004a57057a1eeb1de3cd (diff)
downloademacs-9ebc22d43e28f579c9ee32e92a9f00ff742f215c.tar.gz
emacs-9ebc22d43e28f579c9ee32e92a9f00ff742f215c.zip
(syms_of_buffer): Doc fix.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 2d126681dbb..9d5fb51c258 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4404,7 +4404,11 @@ don't call any before-change or after-change functions.\n\
4404That's because these variables are temporarily set to nil.\n\ 4404That's because these variables are temporarily set to nil.\n\
4405As a result, a hook function cannot straightforwardly alter the value of\n\ 4405As a result, a hook function cannot straightforwardly alter the value of\n\
4406these variables. See the Emacs Lisp manual for a way of\n\ 4406these variables. See the Emacs Lisp manual for a way of\n\
4407accomplishing an equivalent result by using other variables."); 4407accomplishing an equivalent result by using other variables.\n\
4408\n\
4409If an unhandled error happens in running these functions,\n\
4410the variable's value remains nil. That prevents the error\n\
4411from happening repeatedly and making Emacs nonfunctional.");
4408 Vbefore_change_functions = Qnil; 4412 Vbefore_change_functions = Qnil;
4409 4413
4410 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions, 4414 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions,
@@ -4421,8 +4425,11 @@ don't call any before-change or after-change functions.\n\
4421That's because these variables are temporarily set to nil.\n\ 4425That's because these variables are temporarily set to nil.\n\
4422As a result, a hook function cannot straightforwardly alter the value of\n\ 4426As a result, a hook function cannot straightforwardly alter the value of\n\
4423these variables. See the Emacs Lisp manual for a way of\n\ 4427these variables. See the Emacs Lisp manual for a way of\n\
4424accomplishing an equivalent result by using other variables."); 4428accomplishing an equivalent result by using other variables.\n\
4425 4429\n\
4430If an unhandled error happens in running these functions,\n\
4431the variable's value remains nil. That prevents the error\n\
4432from happening repeatedly and making Emacs nonfunctional.");
4426 Vafter_change_functions = Qnil; 4433 Vafter_change_functions = Qnil;
4427 4434
4428 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook, 4435 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,