aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Antipov2012-06-09 13:20:01 +0400
committerDmitry Antipov2012-06-09 13:20:01 +0400
commitdbab98c7afe359308f03d6c4a8d13cbbf2665137 (patch)
tree238e316de36d8ff16831474950b52a68d3ebd6bb
parent1e48e2823fca462b59d3aa23df99965c5f68f3f9 (diff)
downloademacs-dbab98c7afe359308f03d6c4a8d13cbbf2665137.tar.gz
emacs-dbab98c7afe359308f03d6c4a8d13cbbf2665137.zip
* doc/lispref/internals.texi (Garbage Collection): Typo fix.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/internals.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index cbe081ca6b4..74c4a91c49a 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12012-06-10 Dmitry Antipov <dmantipov@yandex.ru>
2
3 * internals.texi (Garbage Collection): Typo fix.
4
12012-06-09 Chong Yidong <cyd@gnu.org> 52012-06-09 Chong Yidong <cyd@gnu.org>
2 6
3 * text.texi (Special Properties): Clarify the meaning of a list of 7 * text.texi (Special Properties): Clarify the meaning of a list of
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index 1d0a7102a22..80012512062 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -230,7 +230,7 @@ structures include the @code{struct vectorlike_header} field whose
230@code{header.next.buffer} points to the next buffer (which could be 230@code{header.next.buffer} points to the next buffer (which could be
231a killed buffer), and @code{header.next.vector} points to the next 231a killed buffer), and @code{header.next.vector} points to the next
232vector in a free list. If a vector is small (smaller than or equal to 232vector in a free list. If a vector is small (smaller than or equal to
233@code{VBLOCK_BYTES_MIN} bytes, see @file{alloc.c}), then 233@code{VBLOCK_BYTES_MAX} bytes, see @file{alloc.c}), then
234@code{header.next.nbytes} contains the vector size in bytes. 234@code{header.next.nbytes} contains the vector size in bytes.
235 235
236@cindex garbage collection 236@cindex garbage collection