diff options
| author | Kenichi Handa | 2010-10-04 10:53:48 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-10-04 10:53:48 +0900 |
| commit | ff06de4f50becfe9d5fc16699531ce9802ee0b7f (patch) | |
| tree | 7bb9e0d3b33d9469ea9018a16f9ca288fa399db6 /src/buffer.c | |
| parent | 5886ec9c0c7a250d987ac6180577b4574ea00f21 (diff) | |
| parent | 397ae2261860609d3f320b9c4255ca8f92353c50 (diff) | |
| download | emacs-ff06de4f50becfe9d5fc16699531ce9802ee0b7f.tar.gz emacs-ff06de4f50becfe9d5fc16699531ce9802ee0b7f.zip | |
merge emacs-23
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 adb85b83e5f..939e2bb0e19 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6096,10 +6096,7 @@ No information is given about the length of the text after the change. | |||
| 6096 | 6096 | ||
| 6097 | Buffer changes made while executing the `before-change-functions' | 6097 | Buffer changes made while executing the `before-change-functions' |
| 6098 | don't call any before-change or after-change functions. | 6098 | don't call any before-change or after-change functions. |
| 6099 | That's because these variables are temporarily set to nil. | 6099 | That's because `inhibit-modification-hooks' is temporarily set non-nil. |
| 6100 | As a result, a hook function cannot straightforwardly alter the | ||
| 6101 | value of these variables. See the Emacs Lisp manual for a way of | ||
| 6102 | accomplishing an equivalent result by using other variables. | ||
| 6103 | 6100 | ||
| 6104 | If an unhandled error happens in running these functions, | 6101 | If an unhandled error happens in running these functions, |
| 6105 | the variable's value remains nil. That prevents the error | 6102 | the variable's value remains nil. That prevents the error |
| @@ -6117,10 +6114,7 @@ and the post-change beginning and end are at the same place.) | |||
| 6117 | 6114 | ||
| 6118 | Buffer changes made while executing the `after-change-functions' | 6115 | Buffer changes made while executing the `after-change-functions' |
| 6119 | don't call any before-change or after-change functions. | 6116 | don't call any before-change or after-change functions. |
| 6120 | That's because these variables are temporarily set to nil. | 6117 | That's because `inhibit-modification-hooks' is temporarily set non-nil. |
| 6121 | As a result, a hook function cannot straightforwardly alter the | ||
| 6122 | value of these variables. See the Emacs Lisp manual for a way of | ||
| 6123 | accomplishing an equivalent result by using other variables. | ||
| 6124 | 6118 | ||
| 6125 | If an unhandled error happens in running these functions, | 6119 | If an unhandled error happens in running these functions, |
| 6126 | the variable's value remains nil. That prevents the error | 6120 | the variable's value remains nil. That prevents the error |