diff options
| author | Paul Eggert | 2011-04-06 20:49:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-06 20:49:25 -0700 |
| commit | ea6c7ae6bf4e43c7c31babf76600d2ee008f4e19 (patch) | |
| tree | a05e7cdc4dd7bd17b111b12efb9cfadd8387e458 /src/ChangeLog | |
| parent | 5fdb398c4b75b0c834aff7132f90b0ce5317a25a (diff) | |
| download | emacs-ea6c7ae6bf4e43c7c31babf76600d2ee008f4e19.tar.gz emacs-ea6c7ae6bf4e43c7c31babf76600d2ee008f4e19.zip | |
Remove the doprnt implementation, as Emacs now uses vsnprintf.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c1bea6b4cc7..a98c4e72ba1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2011-04-07 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-04-07 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Remove the doprnt implementation, as Emacs now uses vsnprintf. | ||
| 4 | * doprnt.c: Remove. | ||
| 5 | * lisp.h (doprnt): Remove. | ||
| 6 | * Makefile.in (base_obj): Remove doprnt.o. | ||
| 7 | * deps.mk (doprnt.o): Remove. | ||
| 8 | |||
| 3 | error: Print 32- and 64-bit integers portably (Bug#8435). | 9 | error: Print 32- and 64-bit integers portably (Bug#8435). |
| 4 | Without this change, on typical 64-bit hosts error ("...%d...", N) | 10 | Without this change, on typical 64-bit hosts error ("...%d...", N) |
| 5 | was used to print both 32- and 64-bit integers N, which relied on | 11 | was used to print both 32- and 64-bit integers N, which relied on |