diff options
| author | Dmitry Antipov | 2014-09-11 17:21:19 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-09-11 17:21:19 +0400 |
| commit | 1dd1218653be3425e7f53ea1cfcb0d14addfaa05 (patch) | |
| tree | a91548f460ecb1aa05ac79dacbb3054853cb9e25 /src/ChangeLog | |
| parent | 20d362538021e154095f4b64f1b3505d3912fffd (diff) | |
| download | emacs-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/ChangeLog | 7 |
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 | |||
| 14 | 2014-09-11 Paul Eggert <eggert@cs.ucla.edu> | 21 | 2014-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. |