aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-04-09 13:19:05 -0700
committerPaul Eggert2011-04-09 13:19:05 -0700
commitbecfa255fb1fb207fa0b5d850e8df3eb53ba0bea (patch)
tree1fd4526acb0a5e8ed3c280275812474fbfa18332 /src/ChangeLog
parentdae0cd48d84709e8f3662b7bbf14d22cc46038de (diff)
downloademacs-becfa255fb1fb207fa0b5d850e8df3eb53ba0bea.tar.gz
emacs-becfa255fb1fb207fa0b5d850e8df3eb53ba0bea.zip
* callint.c (Fcall_interactively): <, not <=, for optimization.
(Fcall_interactively): Count the number of arguments produced, not the number of arguments given. This is simpler and lets GCC 4.6.0 generate slightly better code.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c8811f7708b..86dec69e094 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12011-04-09 Paul Eggert <eggert@cs.ucla.edu> 12011-04-09 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * callint.c (Fcall_interactively): <, not <=, for optimization.
4 (Fcall_interactively): Count the number of arguments produced,
5 not the number of arguments given. This is simpler and lets GCC
6 4.6.0 generate slightly better code.
7
3 * ftfont.c: Distingish more carefully between FcChar8 and char. 8 * ftfont.c: Distingish more carefully between FcChar8 and char.
4 The previous code passed unsigned char * to a functions like 9 The previous code passed unsigned char * to a functions like
5 strlen and xstrcasecmp that expect char *, which does not 10 strlen and xstrcasecmp that expect char *, which does not