diff options
| author | Paul Eggert | 2012-06-23 21:11:19 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-06-23 21:11:19 -0700 |
| commit | f1dd807386718d2c7c29d13b9f7615759086a954 (patch) | |
| tree | fd8eefef3df95b6db09d8a03380f53f88be5832a /src/ChangeLog | |
| parent | b82c175521ddd7d7ae8183c62fc87587b8b615e5 (diff) | |
| download | emacs-f1dd807386718d2c7c29d13b9f7615759086a954.tar.gz emacs-f1dd807386718d2c7c29d13b9f7615759086a954.zip | |
Fix bug when time_t is unsigned and as wide as intmax_t.
* lisp.h (WAIT_READING_MAX): New macro.
* dispnew.c (Fsleep_for, sit_for):
* keyboard.c (kbd_buffer_get_event):
* process.c (Faccept_process_output):
Use it to avoid bogus compiler warnings with obsolescent GCC versions.
This improves on the previous patch, which introduced a bug
when time_t is unsigned and as wide as intmax_t.
See <http://bugs.gnu.org/9000#51>.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 40073d32834..a302db4fae6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2012-06-24 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000). | ||
| 4 | * lisp.h (WAIT_READING_MAX): New macro. | ||
| 5 | * dispnew.c (Fsleep_for, sit_for): | ||
| 6 | * keyboard.c (kbd_buffer_get_event): | ||
| 7 | * process.c (Faccept_process_output): | ||
| 8 | Use it to avoid bogus compiler warnings with obsolescent GCC versions. | ||
| 9 | This improves on the previous patch, which introduced a bug | ||
| 10 | when time_t is unsigned and as wide as intmax_t. | ||
| 11 | See <http://bugs.gnu.org/9000#51>. | ||
| 12 | |||
| 1 | 2012-06-23 Eli Zaretskii <eliz@gnu.org> | 13 | 2012-06-23 Eli Zaretskii <eliz@gnu.org> |
| 2 | 14 | ||
| 3 | * dispnew.c (sit_for, Fsleep_for): | 15 | * dispnew.c (sit_for, Fsleep_for): |