]> git.eshelyaron.com Git - emacs.git/commitdiff
Clean up some MAYBE_UNUSED functions
authorPo Lu <luangruo@yahoo.com>
Wed, 11 May 2022 01:09:05 +0000 (09:09 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 11 May 2022 01:09:05 +0000 (09:09 +0800)
* src/xterm.c (x_clear_area1): Wrap in the conditions where it
will actually be used.

src/xterm.c

index d44554df7b805da7c5db92300e135a09a6170194..4c1720ca94f79b0c3f724cdd9653a9ef54549c14 100644 (file)
@@ -8848,13 +8848,15 @@ x_delete_glyphs (struct frame *f, int n)
 /* Like XClearArea, but check that WIDTH and HEIGHT are reasonable.
    If they are <= 0, this is probably an error.  */
 
-MAYBE_UNUSED static void
+#if defined USE_GTK || !defined USE_CAIRO
+static void
 x_clear_area1 (Display *dpy, Window window,
                int x, int y, int width, int height, int exposures)
 {
   eassert (width > 0 && height > 0);
   XClearArea (dpy, window, x, y, width, height, exposures);
 }
+#endif
 
 void
 x_clear_area (struct frame *f, int x, int y, int width, int height)