diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index aee41f57ac2..a65fc5730df 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2011-02-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | allow C code to suppress warnings about ignored return values | ||
| 4 | |||
| 5 | We need to go through the code and for each such warning, either | ||
| 6 | fix the code to pay attention to the returned value, or tell GCC | ||
| 7 | that we really do want to ignore the returned value. Here is one | ||
| 8 | example of how to do the latter. | ||
| 9 | * sysdep.c: Include <ignore-value.h>. | ||
| 10 | (sys_subshell): Suppress an undesirable warning about not checking | ||
| 11 | the returned value of 'write', as there's nothing useful one can | ||
| 12 | do with that returned value. | ||
| 13 | |||
| 1 | 2011-02-03 Jan Djärv <jan.h.d@swipnet.se> | 14 | 2011-02-03 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 15 | ||
| 3 | * xterm.c (x_connection_closed): Remove all calls that calls | 16 | * xterm.c (x_connection_closed): Remove all calls that calls |