* image.c (clear_image_cache): Likewise.
+2011-05-13 Paul Eggert <eggert@cs.ucla.edu>
+
+ * dispextern.h (struct image): Don't assume time_t <= unsigned long.
+ * image.c (clear_image_cache): Likewise.
+
2011-05-12 Paul Eggert <eggert@cs.ucla.edu>
* term.c (term_mouse_position): Don't assume time_t wraparound.
{
/* The time in seconds at which the image was last displayed. Set
in prepare_image_for_display. */
- unsigned long timestamp;
+ time_t timestamp;
/* Pixmaps of the image. */
Pixmap pixmap, mask;
{
/* Free cache based on timestamp. */
EMACS_TIME t;
- unsigned long old;
+ time_t old;
int delay, nimages = 0;
for (i = 0; i < c->used; ++i)