diff options
| author | Paul Eggert | 2011-07-07 14:52:44 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-07 14:52:44 -0700 |
| commit | a81d11a3efb4d511c5c34c8983dc6aab5d619ea1 (patch) | |
| tree | b520dcbf5ee7ee4d6d601cbbb3e874265818980c /src/ChangeLog | |
| parent | 3300e6fd43c4059de955cddc37ec4212dab2b085 (diff) | |
| download | emacs-a81d11a3efb4d511c5c34c8983dc6aab5d619ea1.tar.gz emacs-a81d11a3efb4d511c5c34c8983dc6aab5d619ea1.zip | |
* editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
Remove, replacing with the new symbols in lisp.h. All uses changed.
* fileio.c (make_temp_name):
* filelock.c (lock_file_1, lock_file):
* xdisp.c (message_dolog):
Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
Use pMd etc. instead.
* lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
replacing the pWIDE etc. symbols removed from editfns.c.
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. |