summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-03-02 20:18:09 -0800
committerGlenn Morris <rgm@gnu.org>2012-03-02 20:18:09 -0800
commit01a6dcc8832ba195ca2c17d5cf04b58f3736902b (patch)
treea34568c7830e66731b8dbd9b6eb24302c71097a9
parent999dd333061ea5d65f6130a6d4357f4782675b8c (diff)
downloademacs-01a6dcc8832ba195ca2c17d5cf04b58f3736902b.tar.gz
lispref/internals.texi Memory Usage tiny change
* doc/lispref/internals.texi: (Memory Usage): Copyedit. * src/alloc.c (misc-objects-consed): Doc fix.
-rw-r--r--doc/lispref/ChangeLog1
-rw-r--r--doc/lispref/internals.texi2
-rw-r--r--src/ChangeLog2
-rw-r--r--src/alloc.c4
4 files changed, 6 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 47705612146..cad2921e78c 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -4,6 +4,7 @@
(Building Emacs): Say less about CANNOT_DUMP platforms.
Replace deleted eval-at-startup with custom-initialize-delay.
(Pure Storage): Small changes.
+ (Memory Usage): Copyedit.
* tips.texi: Copyedits.
(Coding Conventions): Mention autoloads.
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index 35759d39f1d..bab96582302 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -456,7 +456,7 @@ point number.
These functions and variables give information about the total amount
of memory allocation that Emacs has done, broken down by data type.
Note the difference between these and the values returned by
-@code{(garbage-collect)}; those count objects that currently exist, but
+@code{garbage-collect}; those count objects that currently exist, but
these count the number or size of all allocations, including those for
objects that have since been freed.
diff --git a/src/ChangeLog b/src/ChangeLog
index 9f1823d34b6..ef57223b9ca 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,6 @@
2012-03-03 Glenn Morris <rgm@gnu.org>
- * alloc.c (Fgarbage_collect): Doc fix.
+ * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
2012-03-02 Eli Zaretskii <eliz@gnu.org>
diff --git a/src/alloc.c b/src/alloc.c
index 29388870d93..f85661415cd 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6446,7 +6446,9 @@ If this portion is smaller than `gc-cons-threshold', this is ignored. */);
doc: /* Number of string characters that have been consed so far. */);
DEFVAR_INT ("misc-objects-consed", misc_objects_consed,
- doc: /* Number of miscellaneous objects that have been consed so far. */);
+ doc: /* Number of miscellaneous objects that have been consed so far.
+These include markers and overlays, plus certain objects not visible
+to users. */);
DEFVAR_INT ("intervals-consed", intervals_consed,
doc: /* Number of intervals that have been consed so far. */);