diff options
| author | Stefan Monnier | 2014-12-15 15:09:04 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2014-12-15 15:09:04 -0500 |
| commit | fb420e7789b4f9a0481ee44dbdf37d3de6578ad3 (patch) | |
| tree | b4858f3b4a55d9acd2b886e1decfb7f049b6fd0b /src/buffer.c | |
| parent | 061db139896a6eabebef5bfe199744b6151493f3 (diff) | |
| download | emacs-fb420e7789b4f9a0481ee44dbdf37d3de6578ad3.tar.gz emacs-fb420e7789b4f9a0481ee44dbdf37d3de6578ad3.zip | |
* lisp/subr.el (sit-for): Tweak docstring.
Fixes: debbugs:19381
* src/buffer.c (syms_of_buffer) <Vafter_change_functions>: fix docstring.
* build-aux/git-hooks/commit-msg (at_sign): Bump up line-length limit
to 78.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 495f937d83f..368d273d7cd 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6092,9 +6092,9 @@ from happening repeatedly and making Emacs nonfunctional. */); | |||
| 6092 | doc: /* List of functions to call after each text change. | 6092 | doc: /* List of functions to call after each text change. |
| 6093 | Three arguments are passed to each function: the positions of | 6093 | Three arguments are passed to each function: the positions of |
| 6094 | the beginning and end of the range of changed text, | 6094 | the beginning and end of the range of changed text, |
| 6095 | and the length in bytes of the pre-change text replaced by that range. | 6095 | and the length in chars of the pre-change text replaced by that range. |
| 6096 | \(For an insertion, the pre-change length is zero; | 6096 | \(For an insertion, the pre-change length is zero; |
| 6097 | for a deletion, that length is the number of bytes deleted, | 6097 | for a deletion, that length is the number of chars deleted, |
| 6098 | and the post-change beginning and end are at the same place.) | 6098 | and the post-change beginning and end are at the same place.) |
| 6099 | 6099 | ||
| 6100 | Buffer changes made while executing the `after-change-functions' | 6100 | Buffer changes made while executing the `after-change-functions' |