summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-02-18 17:20:50 -0800
committerGlenn Morris <rgm@gnu.org>2013-02-18 17:20:50 -0800
commit93c2fa46e2ea6c0132d2c263f59868085d3ad57c (patch)
treef33717f468e68b1a831314564397aa2085817f2a
parentc9bcc580e8286ee32840dae5aacdcc930cfee2da (diff)
downloademacs-93c2fa46e2ea6c0132d2c263f59868085d3ad57c.tar.gz
* doc/lispref/text.texi (Change Hooks): Fix typo.
-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 @@
+2013-02-19 Glenn Morris <rgm@gnu.org>
+
+ * text.texi (Change Hooks): Fix typo.
+
2013-02-14 Glenn Morris <rgm@gnu.org>
* 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
modification. Each function receives three arguments: the beginning
and end of the region just changed, and the length of the text that
existed before the change. All three arguments are integers. The
-buffer has been changed is always the current buffer.
+buffer that has been changed is always the current buffer.
The length of the old text is the difference between the buffer
positions before and after that text as it was before the change. As