diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8d8e8789811..62bf5712621 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,15 @@ | |||
| 1 | 2011-07-07 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-07-07 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide): | ||
| 4 | Remove, replacing with the new symbols in lisp.h. All uses changed. | ||
| 5 | * fileio.c (make_temp_name): | ||
| 6 | * filelock.c (lock_file_1, lock_file): | ||
| 7 | * xdisp.c (message_dolog): | ||
| 8 | Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts. | ||
| 9 | Use pMd etc. instead. | ||
| 10 | * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros, | ||
| 11 | replacing the pWIDE etc. symbols removed from editfns.c. | ||
| 12 | |||
| 3 | * keyboard.h (num_input_events): Now uintmax_t. | 13 | * keyboard.h (num_input_events): Now uintmax_t. |
| 4 | This is (very slightly) less likely to mess up due to wraparound. | 14 | This is (very slightly) less likely to mess up due to wraparound. |
| 5 | All uses changed. | 15 | All uses changed. |