diff options
| author | Karl Heuer | 1998-04-14 18:59:48 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-04-14 18:59:48 +0000 |
| commit | 968b1234010faa22ff00eac8f9421b3bcb5389ec (patch) | |
| tree | 489f31bb6ef1c6a5757c9d1c3523d56a09dac470 /src | |
| parent | 26dd83e68223327ff5b57948a5278abf265ee883 (diff) | |
| download | emacs-968b1234010faa22ff00eac8f9421b3bcb5389ec.tar.gz emacs-968b1234010faa22ff00eac8f9421b3bcb5389ec.zip | |
(x_destroy_bitmap): Declare as void, not int.
(x_report_frame_params, x_set_border_pixel): Likewise.
(x_set_internal_border_width): widget_store_internal_border takes
just one arg, not two.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/xfns.c b/src/xfns.c index 809c2b45ee7..0fdb4562f16 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -611,7 +611,7 @@ x_create_bitmap_from_file (f, file) | |||
| 611 | 611 | ||
| 612 | /* Remove reference to bitmap with id number ID. */ | 612 | /* Remove reference to bitmap with id number ID. */ |
| 613 | 613 | ||
| 614 | int | 614 | void |
| 615 | x_destroy_bitmap (f, id) | 615 | x_destroy_bitmap (f, id) |
| 616 | FRAME_PTR f; | 616 | FRAME_PTR f; |
| 617 | int id; | 617 | int id; |
| @@ -1023,6 +1023,7 @@ x_real_positions (f, xptr, yptr) | |||
| 1023 | and whose values are not correctly recorded in the frame's | 1023 | and whose values are not correctly recorded in the frame's |
| 1024 | param_alist need to be considered here. */ | 1024 | param_alist need to be considered here. */ |
| 1025 | 1025 | ||
| 1026 | void | ||
| 1026 | x_report_frame_params (f, alistptr) | 1027 | x_report_frame_params (f, alistptr) |
| 1027 | struct frame *f; | 1028 | struct frame *f; |
| 1028 | Lisp_Object *alistptr; | 1029 | Lisp_Object *alistptr; |
| @@ -1445,6 +1446,7 @@ x_set_border_color (f, arg, oldval) | |||
| 1445 | Note that this does not fully take effect if done before | 1446 | Note that this does not fully take effect if done before |
| 1446 | F has an x-window. */ | 1447 | F has an x-window. */ |
| 1447 | 1448 | ||
| 1449 | void | ||
| 1448 | x_set_border_pixel (f, pix) | 1450 | x_set_border_pixel (f, pix) |
| 1449 | struct frame *f; | 1451 | struct frame *f; |
| 1450 | int pix; | 1452 | int pix; |
| @@ -1653,8 +1655,7 @@ x_set_internal_border_width (f, arg, oldval) | |||
| 1653 | 1655 | ||
| 1654 | #ifdef USE_X_TOOLKIT | 1656 | #ifdef USE_X_TOOLKIT |
| 1655 | if (f->output_data.x->edit_widget) | 1657 | if (f->output_data.x->edit_widget) |
| 1656 | widget_store_internal_border (f->output_data.x->edit_widget, | 1658 | widget_store_internal_border (f->output_data.x->edit_widget); |
| 1657 | f->output_data.x->internal_border_width); | ||
| 1658 | #endif | 1659 | #endif |
| 1659 | 1660 | ||
| 1660 | if (f->output_data.x->internal_border_width == old) | 1661 | if (f->output_data.x->internal_border_width == old) |