diff options
| author | Dave Love | 2002-11-14 14:21:34 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-14 14:21:34 +0000 |
| commit | 0971e7305dfaa24cff7172b5d90a5086145ad0aa (patch) | |
| tree | 4f209ae609a2677a402f981c6a673e7b645a2d7f | |
| parent | 7448803ec1b298e67e499125ef50af2ee865b440 (diff) | |
| download | emacs-0971e7305dfaa24cff7172b5d90a5086145ad0aa.tar.gz emacs-0971e7305dfaa24cff7172b5d90a5086145ad0aa.zip | |
(x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
Declare all args (per C99).
| -rw-r--r-- | src/xterm.c | 5 |
1 files changed, 3 insertions, 2 deletions
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 | |||
| 3910 | x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width, | 3910 | x_draw_relief_rect (f, left_x, top_y, right_x, bottom_y, width, |
| 3911 | raised_p, left_p, right_p, clip_rect) | 3911 | raised_p, left_p, right_p, clip_rect) |
| 3912 | struct frame *f; | 3912 | struct frame *f; |
| 3913 | int left_x, top_y, right_x, bottom_y, left_p, right_p, raised_p; | 3913 | int left_x, top_y, right_x, bottom_y, width, left_p, right_p, raised_p; |
| 3914 | XRectangle *clip_rect; | 3914 | XRectangle *clip_rect; |
| 3915 | { | 3915 | { |
| 3916 | Display *dpy = FRAME_X_DISPLAY (f); | 3916 | Display *dpy = FRAME_X_DISPLAY (f); |
| @@ -3970,7 +3970,7 @@ static void | |||
| 3970 | x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width, | 3970 | x_draw_box_rect (s, left_x, top_y, right_x, bottom_y, width, |
| 3971 | left_p, right_p, clip_rect) | 3971 | left_p, right_p, clip_rect) |
| 3972 | struct glyph_string *s; | 3972 | struct glyph_string *s; |
| 3973 | int left_x, top_y, right_x, bottom_y, left_p, right_p; | 3973 | int left_x, top_y, right_x, bottom_y, width, left_p, right_p; |
| 3974 | XRectangle *clip_rect; | 3974 | XRectangle *clip_rect; |
| 3975 | { | 3975 | { |
| 3976 | XGCValues xgcv; | 3976 | XGCValues xgcv; |
| @@ -11982,6 +11982,7 @@ x_display_cursor (w, on, hpos, vpos, x, y) | |||
| 11982 | void | 11982 | void |
| 11983 | x_update_cursor (f, on_p) | 11983 | x_update_cursor (f, on_p) |
| 11984 | struct frame *f; | 11984 | struct frame *f; |
| 11985 | int on_p; | ||
| 11985 | { | 11986 | { |
| 11986 | x_update_cursor_in_window_tree (XWINDOW (f->root_window), on_p); | 11987 | x_update_cursor_in_window_tree (XWINDOW (f->root_window), on_p); |
| 11987 | } | 11988 | } |