aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/text.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 65e23a82847..9d541978cbc 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12013-02-19 Glenn Morris <rgm@gnu.org>
2
3 * text.texi (Change Hooks): Fix typo.
4
12013-02-14 Glenn Morris <rgm@gnu.org> 52013-02-14 Glenn Morris <rgm@gnu.org>
2 6
3 * modes.texi (Basic Major Modes): 'z' no longer bound in special-mode. 7 * modes.texi (Basic Major Modes): 'z' no longer bound in special-mode.
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 00ec62ec49d..c6cbfa5b3f8 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -4344,7 +4344,7 @@ This variable holds a list of functions to call after any buffer
4344modification. Each function receives three arguments: the beginning 4344modification. Each function receives three arguments: the beginning
4345and end of the region just changed, and the length of the text that 4345and end of the region just changed, and the length of the text that
4346existed before the change. All three arguments are integers. The 4346existed before the change. All three arguments are integers. The
4347buffer has been changed is always the current buffer. 4347buffer that has been changed is always the current buffer.
4348 4348
4349The length of the old text is the difference between the buffer 4349The length of the old text is the difference between the buffer
4350positions before and after that text as it was before the change. As 4350positions before and after that text as it was before the change. As