From: Paul Eggert Date: Thu, 2 Jun 2011 06:15:15 +0000 (-0700) Subject: Don't assume time_t can fit into int. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~10^2~7^2^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=84acfcf06be242f35063c719ca5643ad969437fd;p=emacs.git 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. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6e12a97d641..1c97b0ac9f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,10 @@ 2011-06-02 Paul Eggert + 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. + Minor fixes for signed vs unsigned integers. * character.h (MAYBE_UNIFY_CHAR): * charset.c (maybe_unify_char): diff --git a/src/buffer.h b/src/buffer.h index 2f33065cd1a..8c64a24e804 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -545,7 +545,7 @@ struct buffer -1 means visited file was nonexistent. 0 means visited file modtime unknown; in no case complain about any mismatch on next save attempt. */ - int modtime; + time_t modtime; /* Size of the file when modtime was set. This is used to detect the case where the file grew while we were reading it, so the modtime is still the same (since it's rounded up to seconds) but we're actually diff --git a/src/fileio.c b/src/fileio.c index 7e6fd8c82a8..94894b97a6e 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4990,7 +4990,7 @@ See Info node `(elisp)Modification Time' for more details. */) { if (! current_buffer->modtime) return make_number (0); - return make_time ((time_t) current_buffer->modtime); + return make_time (current_buffer->modtime); } DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, diff --git a/src/undo.c b/src/undo.c index 80aff50d18a..142960545a7 100644 --- a/src/undo.c +++ b/src/undo.c @@ -500,7 +500,7 @@ Return what remains of the list. */) { /* Element (t high . low) records previous modtime. */ Lisp_Object high, low; - int mod_time; + time_t mod_time; struct buffer *base_buffer = current_buffer; high = Fcar (cdr);