diff options
| author | Richard M. Stallman | 1998-11-24 09:01:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-11-24 09:01:32 +0000 |
| commit | 9ebc22d43e28f579c9ee32e92a9f00ff742f215c (patch) | |
| tree | 5fc10d2aabe93c75a2bbda6ee86876ae2edee28f /src/buffer.c | |
| parent | 307958d6cbef7ed8d412004a57057a1eeb1de3cd (diff) | |
| download | emacs-9ebc22d43e28f579c9ee32e92a9f00ff742f215c.tar.gz emacs-9ebc22d43e28f579c9ee32e92a9f00ff742f215c.zip | |
(syms_of_buffer): Doc fix.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 13 |
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\ | |||
| 4404 | That's because these variables are temporarily set to nil.\n\ | 4404 | That's because these variables are temporarily set to nil.\n\ |
| 4405 | As a result, a hook function cannot straightforwardly alter the value of\n\ | 4405 | As a result, a hook function cannot straightforwardly alter the value of\n\ |
| 4406 | these variables. See the Emacs Lisp manual for a way of\n\ | 4406 | these variables. See the Emacs Lisp manual for a way of\n\ |
| 4407 | accomplishing an equivalent result by using other variables."); | 4407 | accomplishing an equivalent result by using other variables.\n\ |
| 4408 | \n\ | ||
| 4409 | If an unhandled error happens in running these functions,\n\ | ||
| 4410 | the variable's value remains nil. That prevents the error\n\ | ||
| 4411 | from 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\ | |||
| 4421 | That's because these variables are temporarily set to nil.\n\ | 4425 | That's because these variables are temporarily set to nil.\n\ |
| 4422 | As a result, a hook function cannot straightforwardly alter the value of\n\ | 4426 | As a result, a hook function cannot straightforwardly alter the value of\n\ |
| 4423 | these variables. See the Emacs Lisp manual for a way of\n\ | 4427 | these variables. See the Emacs Lisp manual for a way of\n\ |
| 4424 | accomplishing an equivalent result by using other variables."); | 4428 | accomplishing an equivalent result by using other variables.\n\ |
| 4425 | 4429 | \n\ | |
| 4430 | If an unhandled error happens in running these functions,\n\ | ||
| 4431 | the variable's value remains nil. That prevents the error\n\ | ||
| 4432 | from 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, |