]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix another compiler warning on macOS
authorPhilipp Stephani <phst@google.com>
Thu, 8 Jun 2017 23:27:39 +0000 (01:27 +0200)
committerPhilipp Stephani <phst@google.com>
Thu, 8 Jun 2017 23:27:39 +0000 (01:27 +0200)
* src/image.c (x_query_frame_background_color): Don't define if we
have NextStep but no image support.

src/image.c

index 3ebf469e8b381f74f34f2d99cdabb2e1f3a67527..429777ce511e8ebb9408afabf77f5ab03f98162f 100644 (file)
@@ -1269,8 +1269,7 @@ image_background_transparent (struct image *img, struct frame *f, XImagePtr_or_D
   return img->background_transparent;
 }
 
-#if defined (HAVE_PNG) || defined (HAVE_NS) \
-  || defined (HAVE_IMAGEMAGICK) || defined (HAVE_RSVG)
+#if defined (HAVE_PNG) || defined (HAVE_IMAGEMAGICK) || defined (HAVE_RSVG)
 
 /* Store F's background color into *BGCOLOR.  */
 static void
@@ -1284,7 +1283,7 @@ x_query_frame_background_color (struct frame *f, XColor *bgcolor)
 #endif
 }
 
-#endif /* HAVE_PNG || HAVE_NS || HAVE_IMAGEMAGICK || HAVE_RSVG */
+#endif /* HAVE_PNG || HAVE_IMAGEMAGICK || HAVE_RSVG */
 
 /***********************************************************************
                  Helper functions for X image types