diff options
| author | Paul Eggert | 2011-06-01 23:15:15 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-06-01 23:15:15 -0700 |
| commit | 84acfcf06be242f35063c719ca5643ad969437fd (patch) | |
| tree | 37c7d16b9def0b1f64d9d879a8bfd9ec052c1ee9 /src/ChangeLog | |
| parent | 369b7e5ac5a6609433fc017d09e1f31750f033a7 (diff) | |
| download | emacs-84acfcf06be242f35063c719ca5643ad969437fd.tar.gz emacs-84acfcf06be242f35063c719ca5643ad969437fd.zip | |
Don't assume time_t can fit into int.
* buffer.h (struct buffer.modtime): Now time_t, not int.
* fileio.c (Fvisited_file_modtime): No need for time_t cast now.
* undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6e12a97d641..1c97b0ac9f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2011-06-02 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-06-02 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Don't assume time_t can fit into int. | ||
| 4 | * buffer.h (struct buffer.modtime): Now time_t, not int. | ||
| 5 | * fileio.c (Fvisited_file_modtime): No need for time_t cast now. | ||
| 6 | * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value. | ||
| 7 | |||
| 3 | Minor fixes for signed vs unsigned integers. | 8 | Minor fixes for signed vs unsigned integers. |
| 4 | * character.h (MAYBE_UNIFY_CHAR): | 9 | * character.h (MAYBE_UNIFY_CHAR): |
| 5 | * charset.c (maybe_unify_char): | 10 | * charset.c (maybe_unify_char): |