aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2012-07-20 09:28:00 +0400
committerDmitry Antipov2012-07-20 09:28:00 +0400
commit765e61e391ee0937ff6b30510b6c4651064fe38e (patch)
tree6f8cfef58d32ed81e2219fc69b1c5c5027c8cce8 /src/ChangeLog
parent89dea803ea4293eb8d14b87067d1e3eebdcbd180 (diff)
downloademacs-765e61e391ee0937ff6b30510b6c4651064fe38e.tar.gz
emacs-765e61e391ee0937ff6b30510b6c4651064fe38e.zip
Cleanup calls to Fgarbage_collect.
* lisp.h (maybe_gc): New prototype. (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold): Remove declarations. * alloc.c (maybe_gc): New function. (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold): Make them static. * bytecode.c (MAYBE_GC): Use maybe_gc. * eval.c (eval_sub, Ffuncall): Likewise. * keyboard.c (read_char): Likewise. Adjust call to maybe_gc to avoid dependency from auto-save feature.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index bed8e25ab77..909fb03c488 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,17 @@
12012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2
3 Cleanup calls to Fgarbage_collect.
4 * lisp.h (maybe_gc): New prototype.
5 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
6 Remove declarations.
7 * alloc.c (maybe_gc): New function.
8 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
9 Make them static.
10 * bytecode.c (MAYBE_GC): Use maybe_gc.
11 * eval.c (eval_sub, Ffuncall): Likewise.
12 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
13 to avoid dependency from auto-save feature.
14
12012-07-19 Paul Eggert <eggert@cs.ucla.edu> 152012-07-19 Paul Eggert <eggert@cs.ucla.edu>
2 16
3 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'. 17 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.