diff options
| author | Paul Eggert | 2011-04-09 13:19:05 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-09 13:19:05 -0700 |
| commit | becfa255fb1fb207fa0b5d850e8df3eb53ba0bea (patch) | |
| tree | 1fd4526acb0a5e8ed3c280275812474fbfa18332 /src/ChangeLog | |
| parent | dae0cd48d84709e8f3662b7bbf14d22cc46038de (diff) | |
| download | emacs-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/ChangeLog | 5 |
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 @@ | |||
| 1 | 2011-04-09 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-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 |