diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4d6251f6bde..5760bfc2a1c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,14 @@ | |||
| 1 | 2011-05-12 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-05-12 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * keyboard.c (make_lispy_event): Fix problem in integer overflow. | ||
| 4 | Don't assume that the difference between two unsigned long values | ||
| 5 | can fit into an integer. At this point, we know button_down_time | ||
| 6 | <= event->timestamp, so the difference must be nonnegative, so | ||
| 7 | there's no need to cast the result if double-click-time is | ||
| 8 | nonnegative, as it should be; check that it's nonnegative, just in | ||
| 9 | case. This bug is triggered when events are more than 2**31 ms | ||
| 10 | apart (about 25 days). | ||
| 11 | |||
| 3 | * xselect.c (last_event_timestamp): Remove duplicate decl. | 12 | * xselect.c (last_event_timestamp): Remove duplicate decl. |
| 4 | (x_own_selection): Remove needless cast to unsigned long. | 13 | (x_own_selection): Remove needless cast to unsigned long. |
| 5 | 14 | ||