]> git.eshelyaron.com Git - emacs.git/commitdiff
* image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 5 May 2011 07:23:07 +0000 (00:23 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 5 May 2011 07:23:07 +0000 (00:23 -0700)
src/ChangeLog
src/image.c

index 2b4f498a0b943c2418802eb9fd3596b12557b3db..755b02631f6cb621b8f1123c69967f91ec692127 100644 (file)
@@ -1,5 +1,7 @@
 2011-05-05  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
+
        * term.c (vfatal): Remove stray call to va_end.
        It's not needed and the C Standard doesn't allow it here anyway.
 
index d78b556d8c9954dafde7f7a5f4a9ea41ba8c993e..4e0503ac1dc4c194877703ce90d9533c0e0bb1e4 100644 (file)
@@ -8602,11 +8602,9 @@ Libraries to load are specified in alist LIBRARIES (usually, the value
 of `dynamic-library-alist', which see).  */)
   (Lisp_Object type, Lisp_Object libraries)
 {
-  Lisp_Object tested;
-
 #ifdef HAVE_NTGUI
   /* Don't try to reload the library.  */
-  tested = Fassq (type, Vlibrary_cache);
+  Lisp_Object tested = Fassq (type, Vlibrary_cache);
   if (CONSP (tested))
     return XCDR (tested);
 #endif