Mercurial > emacs
changeset 21536:468585662fa8
(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.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 14 Apr 1998 18:59:48 +0000 |
parents | f9043d661283 |
children | 4a716088f0b4 |
files | src/xfns.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfns.c Tue Apr 14 18:42:32 1998 +0000 +++ b/src/xfns.c Tue Apr 14 18:59:48 1998 +0000 @@ -611,7 +611,7 @@ /* Remove reference to bitmap with id number ID. */ -int +void x_destroy_bitmap (f, id) FRAME_PTR f; int id; @@ -1023,6 +1023,7 @@ and whose values are not correctly recorded in the frame's param_alist need to be considered here. */ +void x_report_frame_params (f, alistptr) struct frame *f; Lisp_Object *alistptr; @@ -1445,6 +1446,7 @@ Note that this does not fully take effect if done before F has an x-window. */ +void x_set_border_pixel (f, pix) struct frame *f; int pix; @@ -1653,8 +1655,7 @@ #ifdef USE_X_TOOLKIT if (f->output_data.x->edit_widget) - widget_store_internal_border (f->output_data.x->edit_widget, - f->output_data.x->internal_border_width); + widget_store_internal_border (f->output_data.x->edit_widget); #endif if (f->output_data.x->internal_border_width == old)