diff options
author | Dave Love <fx@gnu.org> | 2002-11-21 10:58:03 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2002-11-21 10:58:03 +0000 |
commit | 3d176eaa27de948574948dbb956d8821e29d6ffc (patch) | |
tree | b6dd314bfe617b922fedb01a24416623f57527ed /lwlib/lwlib-Xaw.c | |
parent | 057171116ca7fa2281175abacbab79957fd434e1 (diff) | |
download | emacs-3d176eaa27de948574948dbb956d8821e29d6ffc.tar.gz |
Provide ISO C arglists for functions
with Boolean args.
Diffstat (limited to 'lwlib/lwlib-Xaw.c')
-rw-r--r-- | lwlib/lwlib-Xaw.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lwlib/lwlib-Xaw.c b/lwlib/lwlib-Xaw.c index b93ee0beb36..058899a9277 100644 --- a/lwlib/lwlib-Xaw.c +++ b/lwlib/lwlib-Xaw.c @@ -119,11 +119,16 @@ xaw_update_scrollbar (instance, widget, val) #endif void +#ifdef PROTOTYPES +xaw_update_one_widget (widget_instance *instance, Widget widget, + widget_value *val, Boolean deep_p) +#else xaw_update_one_widget (instance, widget, val, deep_p) widget_instance *instance; Widget widget; widget_value *val; Boolean deep_p; +#endif { #if 0 if (XtIsSubclass (widget, scrollbarWidgetClass)) @@ -198,9 +203,13 @@ xaw_popup_menu (widget, event) } void +#ifdef PROTOTYPES +xaw_pop_instance (widget_instance *instance, Boolean up) +#else xaw_pop_instance (instance, up) widget_instance *instance; Boolean up; +#endif { Widget widget = instance->widget; |