diff options
| author | Paul Eggert | 2011-06-01 22:33:33 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-01 22:33:33 -0700 |
| commit | 369b7e5ac5a6609433fc017d09e1f31750f033a7 (patch) | |
| tree | 9fa2d348411feab6da1530f170a7496e31fea98b /src/ChangeLog | |
| parent | 7d5200893a8cc980744bb4c65355df5a936388bb (diff) | |
| parent | 7e655d386397029b7ce6ac204fc41e5ddc92cf54 (diff) | |
| download | emacs-369b7e5ac5a6609433fc017d09e1f31750f033a7.tar.gz emacs-369b7e5ac5a6609433fc017d09e1f31750f033a7.zip | |
Merge: Minor fixes for signed vs unsigned integers.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0302f06f9c0..6e12a97d641 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,19 @@ | |||
| 1 | 2011-06-02 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Minor fixes for signed vs unsigned integers. | ||
| 4 | * character.h (MAYBE_UNIFY_CHAR): | ||
| 5 | * charset.c (maybe_unify_char): | ||
| 6 | * keyboard.c (read_char, reorder_modifiers): | ||
| 7 | XINT -> XFASTINT, since the integer must be nonnegative. | ||
| 8 | * ftfont.c (ftfont_spec_pattern): | ||
| 9 | * keymap.c (access_keymap, silly_event_symbol_error): | ||
| 10 | XUINT -> XFASTINT, since the integer must be nonnegative. | ||
| 11 | (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT, | ||
| 12 | since it makes no difference and we prefer signed. | ||
| 13 | * keyboard.c (record_char): Use XUINT when all the neighbors do. | ||
| 14 | (access_keymap): NATNUMP -> INTEGERP, since the integer must be | ||
| 15 | nonnegative. | ||
| 16 | |||
| 1 | 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu> | 17 | 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 18 | ||
| 3 | Make it possible to build with GCC-4.6+ -O2 -flto. | 19 | Make it possible to build with GCC-4.6+ -O2 -flto. |