diff options
| author | Glenn Morris | 2012-03-02 20:18:09 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-03-02 20:18:09 -0800 |
| commit | 01a6dcc8832ba195ca2c17d5cf04b58f3736902b (patch) | |
| tree | a34568c7830e66731b8dbd9b6eb24302c71097a9 /doc | |
| parent | 999dd333061ea5d65f6130a6d4357f4782675b8c (diff) | |
| download | emacs-01a6dcc8832ba195ca2c17d5cf04b58f3736902b.tar.gz emacs-01a6dcc8832ba195ca2c17d5cf04b58f3736902b.zip | |
lispref/internals.texi Memory Usage tiny change
* doc/lispref/internals.texi: (Memory Usage): Copyedit.
* src/alloc.c (misc-objects-consed): Doc fix.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 1 | ||||
| -rw-r--r-- | doc/lispref/internals.texi | 2 |
2 files changed, 2 insertions, 1 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 @@ | |||
| 4 | (Building Emacs): Say less about CANNOT_DUMP platforms. | 4 | (Building Emacs): Say less about CANNOT_DUMP platforms. |
| 5 | Replace deleted eval-at-startup with custom-initialize-delay. | 5 | Replace deleted eval-at-startup with custom-initialize-delay. |
| 6 | (Pure Storage): Small changes. | 6 | (Pure Storage): Small changes. |
| 7 | (Memory Usage): Copyedit. | ||
| 7 | 8 | ||
| 8 | * tips.texi: Copyedits. | 9 | * tips.texi: Copyedits. |
| 9 | (Coding Conventions): Mention autoloads. | 10 | (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. | |||
| 456 | These functions and variables give information about the total amount | 456 | These functions and variables give information about the total amount |
| 457 | of memory allocation that Emacs has done, broken down by data type. | 457 | of memory allocation that Emacs has done, broken down by data type. |
| 458 | Note the difference between these and the values returned by | 458 | Note the difference between these and the values returned by |
| 459 | @code{(garbage-collect)}; those count objects that currently exist, but | 459 | @code{garbage-collect}; those count objects that currently exist, but |
| 460 | these count the number or size of all allocations, including those for | 460 | these count the number or size of all allocations, including those for |
| 461 | objects that have since been freed. | 461 | objects that have since been freed. |
| 462 | 462 | ||