From f661cb610a93994c5590d97e8413a664aec5eb7c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 1 Apr 2011 19:36:48 -0700 Subject: [PATCH] * image.c (lookup_image): Remove var that is set but not used. --- src/ChangeLog | 2 ++ src/image.c | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5634231fccc..2d26daf4fad 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-04-02 Paul Eggert + * image.c (lookup_image): Remove var that is set but not used. + * fontset.c (Finternal_char_font, Ffontset_info): Remove vars that are set but not used. diff --git a/src/image.c b/src/image.c index b37ba398d83..0a893c116b8 100644 --- a/src/image.c +++ b/src/image.c @@ -1708,7 +1708,6 @@ postprocess_image (struct frame *f, struct image *img) int lookup_image (struct frame *f, Lisp_Object spec) { - struct image_cache *c; struct image *img; unsigned hash; EMACS_TIME now; @@ -1718,8 +1717,6 @@ lookup_image (struct frame *f, Lisp_Object spec) xassert (FRAME_WINDOW_P (f)); xassert (valid_image_p (spec)); - c = FRAME_IMAGE_CACHE (f); - /* Look up SPEC in the hash table of the image cache. */ hash = sxhash (spec, 0); img = search_image_cache (f, spec, hash); -- 2.39.2