diff options
| author | Paul Eggert | 2011-05-02 22:46:00 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-05-02 22:46:00 -0700 |
| commit | 79f5556a7a75ed21c4fafa04f02adb81822a57f9 (patch) | |
| tree | a614d9543bb0509274564217a633aac3cb273421 /src/ChangeLog | |
| parent | 48e400f07d5a37b8ab7a75f758b61fb6440cedd8 (diff) | |
| parent | 2f9442b848594799dd155d455930215df2d2a222 (diff) | |
| download | emacs-79f5556a7a75ed21c4fafa04f02adb81822a57f9.tar.gz emacs-79f5556a7a75ed21c4fafa04f02adb81822a57f9.zip | |
Merge: Fixes for Bug#8600 and Bug#8601.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3013418afec..75917224ca9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,4 +1,11 @@ | |||
| 1 | 2011-05-02 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-05-03 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | |||
| 3 | * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601). | ||
| 4 | |||
| 5 | * charset.h (struct charset.code_space): Now has 15 elements, not 16. | ||
| 6 | * charset.c (Fdefine_charset_internal): Don't initialize | ||
| 7 | charset.code_space[15]. The value was garbage, on hosts with | ||
| 8 | 32-bit int (Bug#8600). | ||
| 2 | 9 | ||
| 3 | * lread.c (read_integer): Be more consistent with string-to-number. | 10 | * lread.c (read_integer): Be more consistent with string-to-number. |
| 4 | Use string_to_number to do the actual conversion; this avoids | 11 | Use string_to_number to do the actual conversion; this avoids |
| @@ -8,8 +15,6 @@ | |||
| 8 | Return -1 if the digit is out of range for the base, -2 if it is | 15 | Return -1 if the digit is out of range for the base, -2 if it is |
| 9 | not a digit in any supported base. (Bug#8602) | 16 | not a digit in any supported base. (Bug#8602) |
| 10 | 17 | ||
| 11 | 2011-04-30 Paul Eggert <eggert@cs.ucla.edu> | ||
| 12 | |||
| 13 | * doprnt.c (doprnt): Support arbitrary pI values, such as "I64". | 18 | * doprnt.c (doprnt): Support arbitrary pI values, such as "I64". |
| 14 | 19 | ||
| 15 | * dispnew.c (scrolling_window): Return 1 if we scrolled, | 20 | * dispnew.c (scrolling_window): Return 1 if we scrolled, |