aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2012-07-19 13:50:01 +0400
committerDmitry Antipov2012-07-19 13:50:01 +0400
commit5b835e1d6e0c6fafc7f27174889358bfde5f2449 (patch)
treefe3d98d833f7bee6f04d69b62dd9bd65c56d1a79 /src/ChangeLog
parent9cd47b72e021f76a6e2481d986ce4b0cb0b859d3 (diff)
downloademacs-5b835e1d6e0c6fafc7f27174889358bfde5f2449.tar.gz
emacs-5b835e1d6e0c6fafc7f27174889358bfde5f2449.zip
Tweak the value returned from Fgarbage_collect again.
* src/alloc.c (Fgarbage_collect): New return value, as confirmed in http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html. Adjust documentation. (total_vector_bytes): Rename to total_vector_slots, adjust accounting. (total_free_vector_bytes): Rename to total_free_vector_slots, adjust accounting. (Qstring_bytes, Qvector_slots): New symbols. (syms_of_alloc): DEFSYM them. * lisp/emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7a0942f9c7e..517d61c4e40 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,18 @@
12012-07-19 Dmitry Antipov <dmantipov@yandex.ru> 12012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 Tweak the value returned from Fgarbage_collect again.
4 * alloc.c (Fgarbage_collect): New return value, as confirmed in
5 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
6 Adjust documentation.
7 (total_vector_bytes): Rename to total_vector_slots, adjust
8 accounting.
9 (total_free_vector_bytes): Rename to total_free_vector_slots,
10 adjust accounting.
11 (Qstring_bytes, Qvector_slots): New symbols.
12 (syms_of_alloc): DEFSYM them.
13
142012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
15
3 Buffer compaction primitive which may be used from Lisp. 16 Buffer compaction primitive which may be used from Lisp.
4 * buffer.c (compact_buffer, Fcompact_buffer): New function. 17 * buffer.c (compact_buffer, Fcompact_buffer): New function.
5 (syms_of_buffer): Register Fcompact_buffer. 18 (syms_of_buffer): Register Fcompact_buffer.