diff options
| author | Juanma Barranquero | 2010-10-08 12:14:47 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-10-08 12:14:47 +0200 |
| commit | 4628bef1eea0f60e846fe6b6591725aa92952de9 (patch) | |
| tree | 9d137b8e0964c0b1ebc4afb4e743e35b807d048d /src/buffer.c | |
| parent | 24ac444fbe5d76a7cf09a62b741b9e956ab90d3e (diff) | |
| parent | 2b7c934285417d2eac7a3c603231d22ce7e212d8 (diff) | |
| download | emacs-4628bef1eea0f60e846fe6b6591725aa92952de9.tar.gz emacs-4628bef1eea0f60e846fe6b6591725aa92952de9.zip | |
Merge changes from emacs-23 branch.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/buffer.c b/src/buffer.c index 3f087d62a5f..ed3b7acd2ac 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5957,10 +5957,7 @@ No information is given about the length of the text after the change. | |||
| 5957 | 5957 | ||
| 5958 | Buffer changes made while executing the `before-change-functions' | 5958 | Buffer changes made while executing the `before-change-functions' |
| 5959 | don't call any before-change or after-change functions. | 5959 | don't call any before-change or after-change functions. |
| 5960 | That's because these variables are temporarily set to nil. | 5960 | That's because `inhibit-modification-hooks' is temporarily set non-nil. |
| 5961 | As a result, a hook function cannot straightforwardly alter the | ||
| 5962 | value of these variables. See the Emacs Lisp manual for a way of | ||
| 5963 | accomplishing an equivalent result by using other variables. | ||
| 5964 | 5961 | ||
| 5965 | If an unhandled error happens in running these functions, | 5962 | If an unhandled error happens in running these functions, |
| 5966 | the variable's value remains nil. That prevents the error | 5963 | the variable's value remains nil. That prevents the error |
| @@ -5978,10 +5975,7 @@ and the post-change beginning and end are at the same place.) | |||
| 5978 | 5975 | ||
| 5979 | Buffer changes made while executing the `after-change-functions' | 5976 | Buffer changes made while executing the `after-change-functions' |
| 5980 | don't call any before-change or after-change functions. | 5977 | don't call any before-change or after-change functions. |
| 5981 | That's because these variables are temporarily set to nil. | 5978 | That's because `inhibit-modification-hooks' is temporarily set non-nil. |
| 5982 | As a result, a hook function cannot straightforwardly alter the | ||
| 5983 | value of these variables. See the Emacs Lisp manual for a way of | ||
| 5984 | accomplishing an equivalent result by using other variables. | ||
| 5985 | 5979 | ||
| 5986 | If an unhandled error happens in running these functions, | 5980 | If an unhandled error happens in running these functions, |
| 5987 | the variable's value remains nil. That prevents the error | 5981 | the variable's value remains nil. That prevents the error |