diff options
| -rw-r--r-- | doc/emacs/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/emacs/commands.texi | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 11 |
3 files changed, 13 insertions, 4 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index ac913fc3264..88c208ce295 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-09-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * commands.texi (Keys): Whitespace fix. (Bug#9635) | ||
| 4 | |||
| 1 | 2011-09-24 Chong Yidong <cyd@stupidchicken.com> | 5 | 2011-09-24 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * windows.texi (Pop Up Window): Defer discussion of window | 7 | * windows.texi (Pop Up Window): Defer discussion of window |
diff --git a/doc/emacs/commands.texi b/doc/emacs/commands.texi index 5f44e7cd076..cff725027e9 100644 --- a/doc/emacs/commands.texi +++ b/doc/emacs/commands.texi | |||
| @@ -137,7 +137,7 @@ become an invalid key sequence. @xref{Key Bindings}. | |||
| 137 | 137 | ||
| 138 | Typing the help character (@kbd{C-h} or @key{F1}) after a prefix key | 138 | Typing the help character (@kbd{C-h} or @key{F1}) after a prefix key |
| 139 | displays a list of the commands starting with that prefix. The sole | 139 | displays a list of the commands starting with that prefix. The sole |
| 140 | exception to this rule is @key{ESC}: @kbd{@key{ESC}C-h} is equivalent | 140 | exception to this rule is @key{ESC}: @kbd{@key{ESC} C-h} is equivalent |
| 141 | to @kbd{C-M-h}, which does something else entirely. You can, however, | 141 | to @kbd{C-M-h}, which does something else entirely. You can, however, |
| 142 | use @key{F1} to displays a list of the commands starting with | 142 | use @key{F1} to displays a list of the commands starting with |
| 143 | @key{ESC}. | 143 | @key{ESC}. |
diff --git a/src/ChangeLog b/src/ChangeLog index 2cb49cace00..790ae712476 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -288,9 +288,6 @@ | |||
| 288 | (Finsert_file_contents): Check that counts are in proper range, | 288 | (Finsert_file_contents): Check that counts are in proper range, |
| 289 | rather than assuming fixnums fit into ptrdiff_t etc. | 289 | rather than assuming fixnums fit into ptrdiff_t etc. |
| 290 | Don't assume fixnums fit into int. | 290 | Don't assume fixnums fit into int. |
| 291 | (Fdo_auto_save, Fset_buffer_auto_saved) | ||
| 292 | (Fclear_buffer_auto_save_failure): | ||
| 293 | Don't assume time_t is signed, or that it fits in int. | ||
| 294 | * floatfns.c (Fexpt): Avoid undefined signed * signed overflow. | 291 | * floatfns.c (Fexpt): Avoid undefined signed * signed overflow. |
| 295 | * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat) | 292 | * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat) |
| 296 | (string_char_byte_cache_charpos, string_char_byte_cache_bytepos) | 293 | (string_char_byte_cache_charpos, string_char_byte_cache_bytepos) |
| @@ -777,6 +774,14 @@ | |||
| 777 | 774 | ||
| 778 | 2011-09-30 Paul Eggert <eggert@cs.ucla.edu> | 775 | 2011-09-30 Paul Eggert <eggert@cs.ucla.edu> |
| 779 | 776 | ||
| 777 | * buffer.h (struct buffer): Use time_t, not int, for a time stamp. | ||
| 778 | This fixes a Y2038 bug on 64-bit hosts. | ||
| 779 | * buffer.c (reset_buffer): | ||
| 780 | * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved) | ||
| 781 | (Fclear_buffer_auto_save_failure): | ||
| 782 | Use 0, not -1, to represent an unset failure time, since time_t | ||
| 783 | might not be signed. | ||
| 784 | |||
| 780 | Remove dependency on glibc malloc internals. | 785 | Remove dependency on glibc malloc internals. |
| 781 | * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE): | 786 | * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE): |
| 782 | Move back here from lisp.h, but with their new implementations. | 787 | Move back here from lisp.h, but with their new implementations. |