diff options
| author | Paul Eggert | 2011-03-27 01:10:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-27 01:10:27 -0700 |
| commit | fe75f92609a806701f8a4d0385f3a053bc00e63d (patch) | |
| tree | bfad3c172a8b40e21cbcc57e004ac8b7f5789262 /src/ChangeLog | |
| parent | 4a843dd730dc1d209fb759136460dc411b299616 (diff) | |
| download | emacs-fe75f92609a806701f8a4d0385f3a053bc00e63d.tar.gz emacs-fe75f92609a806701f8a4d0385f3a053bc00e63d.zip | |
* chartab.c (sub_char_table_ref_and_range): Redo for slight
efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8a20c06b41c..6127bc0e8da 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-03-27 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-03-27 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * chartab.c (sub_char_table_ref_and_range): Redo for slight | ||
| 4 | efficiency gain, and to bypass a gcc -Wstrict-overflow warning. | ||
| 5 | |||
| 3 | * keyboard.c, keyboard.h (num_input_events): Now size_t. | 6 | * keyboard.c, keyboard.h (num_input_events): Now size_t. |
| 4 | This avoids undefined behavior on integer overflow, and is a bit | 7 | This avoids undefined behavior on integer overflow, and is a bit |
| 5 | more convenient anyway since it is compared to a size_t variable. | 8 | more convenient anyway since it is compared to a size_t variable. |