From: Paul Eggert Date: Mon, 17 Apr 2017 18:13:56 +0000 (-0700) Subject: * src/xterm.c (x_fill_rectangle): Now static. X-Git-Tag: emacs-26.0.90~521^2~609 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b8e0d203febffe7446cbc5e0ee7d9bf168854a88;p=emacs.git * src/xterm.c (x_fill_rectangle): Now static. --- diff --git a/src/xterm.c b/src/xterm.c index 51692921708..3de1ffea900 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -714,7 +714,7 @@ x_reset_clip_rectangles (struct frame *f, GC gc) #endif } -void +static void x_fill_rectangle (struct frame *f, GC gc, int x, int y, int width, int height) { #ifdef USE_CAIRO diff --git a/src/xterm.h b/src/xterm.h index 3122a2b208c..a75257006fd 100644 --- a/src/xterm.h +++ b/src/xterm.h @@ -1102,7 +1102,6 @@ extern bool x_alloc_lighter_color_for_widget (Widget, Display *, Colormap, extern bool x_alloc_nearest_color (struct frame *, Colormap, XColor *); extern void x_query_color (struct frame *f, XColor *); extern void x_clear_area (struct frame *f, int, int, int, int); -extern void x_fill_rectangle (struct frame *f, GC, int, int, int, int); #if !defined USE_X_TOOLKIT && !defined USE_GTK extern void x_mouse_leave (struct x_display_info *); #endif