aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorDmitry Antipov2014-09-11 17:21:19 +0400
committerDmitry Antipov2014-09-11 17:21:19 +0400
commit1dd1218653be3425e7f53ea1cfcb0d14addfaa05 (patch)
treea91548f460ecb1aa05ac79dacbb3054853cb9e25 /src/ChangeLog
parent20d362538021e154095f4b64f1b3505d3912fffd (diff)
downloademacs-1dd1218653be3425e7f53ea1cfcb0d14addfaa05.tar.gz
emacs-1dd1218653be3425e7f53ea1cfcb0d14addfaa05.zip
Remove redundant GCPROs around Ffuncall and Fapply calls. This
is safe because Ffuncall protects all of its arguments by itself. * charset.c (map_charset_for_dump): Remove redundant GCPRO. * eval.c (Fapply, apply1, call0, call1, call2, call3, call4, call5) (call6, call7): Likewise. Use compound literals where applicable. (run_hook_with_args_2): Use compound literal.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 202b5f22e9d..a9d60f7f012 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -11,6 +11,13 @@
11 * lread.c (readevalloop_eager_expand_eval): Add GCPRO and fix 11 * lread.c (readevalloop_eager_expand_eval): Add GCPRO and fix
12 bootstrap broken if GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE. 12 bootstrap broken if GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
13 13
14 Remove redundant GCPROs around Ffuncall and Fapply calls. This
15 is safe because Ffuncall protects all of its arguments by itself.
16 * charset.c (map_charset_for_dump): Remove redundant GCPRO.
17 * eval.c (Fapply, apply1, call0, call1, call2, call3, call4, call5)
18 (call6, call7): Likewise. Use compound literals where applicable.
19 (run_hook_with_args_2): Use compound literal.
20
142014-09-11 Paul Eggert <eggert@cs.ucla.edu> 212014-09-11 Paul Eggert <eggert@cs.ucla.edu>
15 22
16 Pacify --enable-gcc-warnings when no window system is used. 23 Pacify --enable-gcc-warnings when no window system is used.