From: Dave Love Date: Thu, 14 Nov 2002 14:21:34 +0000 (+0000) Subject: (x_draw_relief_rect, x_draw_box_rect, x_update_cursor): X-Git-Tag: ttn-vms-21-2-B4~12445 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0971e7305dfaa24cff7172b5d90a5086145ad0aa;p=emacs.git (x_draw_relief_rect, x_draw_box_rect, x_update_cursor): Declare all args (per C99). --- diff --git a/src/xterm.c b/src/xterm.c index c96eec56bf1..1e5ee80a110 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -3910,7 +3910,7 @@ static void x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width, raised_p, left_p, right_p, clip_rect) struct frame *f; - int left_x, top_y, right_x, bottom_y, left_p, right_p, raised_p; + int left_x, top_y, right_x, bottom_y, width, left_p, right_p, raised_p; XRectangle *clip_rect; { Display *dpy = FRAME_X_DISPLAY (f); @@ -3970,7 +3970,7 @@ static void x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width, left_p, right_p, clip_rect) struct glyph_string *s; - int left_x, top_y, right_x, bottom_y, left_p, right_p; + int left_x, top_y, right_x, bottom_y, width, left_p, right_p; XRectangle *clip_rect; { XGCValues xgcv; @@ -11982,6 +11982,7 @@ x_display_cursor (w, on, hpos, vpos, x, y) void x_update_cursor (f, on_p) struct frame *f; + int on_p; { x_update_cursor_in_window_tree (XWINDOW (f->root_window), on_p); }