]> git.eshelyaron.com Git - emacs.git/commitdiff
Provide ISO C arglists for functions
authorDave Love <fx@gnu.org>
Thu, 21 Nov 2002 10:58:13 +0000 (10:58 +0000)
committerDave Love <fx@gnu.org>
Thu, 21 Nov 2002 10:58:13 +0000 (10:58 +0000)
with Boolean args.

lwlib/ChangeLog
lwlib/lwlib-Xaw.c

index a5e88ec5e081b04a29200cef44ccb81ab97501ca..ae38c07eb40996f3bf9971af35bdb9415e85412c 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-21  Dave Love  <fx@gnu.org>
+
+       * lwlib-Xaw.c [PROTOTYPES]: Provide ISO C arglists for functions
+       with Boolean args.
+
 2002-11-20  Dave Love  <fx@gnu.org>
 
        * lwlib.c: Remove obsolete USE_OLIT code.
index b93ee0beb369821e7ceafa26f72f522090f56424..058899a9277a7f7b94ef8a8a50960d30f5895621 100644 (file)
@@ -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;