> From: "emacs user" <[EMAIL PROTECTED]>
> Cc: [email protected]
> Bcc:
> Date: Wed, 09 Aug 2006 18:13:24 -0400
>
> if (c && INTEGERP (Vimage_cache_eviction_delay))
> {
> fprintf(stderr, "I am here4\n");
> EMACS_TIME t;
> unsigned long old;
> int i, nfreed;
>
> EMACS_GET_TIME (t);
> old = EMACS_SECS (t) - XFASTINT (Vimage_cache_eviction_delay);
>
> /* Block input so that we won't be interrupted by a SIGIO
> while being in an inconsistent state. */
> BLOCK_INPUT;
>
> for (i = nfreed = 0; i < c->used; ++i)
> {
> fprintf(stderr, "I am here5\n");
> struct image *img = c->images[i];
Thanks. Please also see if free_image is actually called:
for (i = nfreed = 0; i < c->used; ++i)
{
struct image *img = c->images[i];
if (img != NULL
&& (force_p || img->timestamp < old))
{
fprintf(stderr, "I am here6\n"); <<<<<<<<<<<
free_image (f, img);
++nfreed;
}
}
_______________________________________________
emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug