From: Martin R. <ru...@us...> - 2010-04-26 15:32:25
|
Update of /cvsroot/foo/fooelk/lib/xwidgets In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7583/lib/xwidgets Modified Files: context.c identifier.c widget.c Log Message: equiv to revision level r271 of original elk Index: identifier.c =================================================================== RCS file: /cvsroot/foo/fooelk/lib/xwidgets/identifier.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** identifier.c 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- identifier.c 26 Apr 2010 15:32:17 -0000 1.2 *************** *** 38,42 **** } ! Generic_Print (Identifier, "#[identifier %lu]", POINTER(x)) Object Make_Id (int type, XtPointer val, int num) { --- 38,43 ---- } ! Generic_Print (Identifier, "#[identifier %lu]", ! (unsigned int)(uintptr_t)POINTER(x)) Object Make_Id (int type, XtPointer val, int num) { Index: widget.c =================================================================== RCS file: /cvsroot/foo/fooelk/lib/xwidgets/widget.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** widget.c 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- widget.c 26 Apr 2010 15:32:17 -0000 1.2 *************** *** 39,43 **** Generic_Equal (Widget, WIDGET, widget) ! Generic_Print (Widget, "#[widget %lu]", POINTER(x)) static Object Internal_Make_Widget (int finalize, Widget widget) { --- 39,43 ---- Generic_Equal (Widget, WIDGET, widget) ! Generic_Print (Widget, "#[widget %lu]", (unsigned int)(uintptr_t)POINTER(x)) static Object Internal_Make_Widget (int finalize, Widget widget) { Index: context.c =================================================================== RCS file: /cvsroot/foo/fooelk/lib/xwidgets/context.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** context.c 6 Aug 2004 20:56:43 -0000 1.1.1.1 --- context.c 26 Apr 2010 15:32:17 -0000 1.2 *************** *** 51,55 **** Generic_Equal (Context, CONTEXT, context) ! Generic_Print (Context, "#[context %lu]", POINTER(x)) static Object Internal_Make_Context (int finalize, XtAppContext context) { --- 51,55 ---- Generic_Equal (Context, CONTEXT, context) ! Generic_Print (Context, "#[context %lu]", (unsigned int)(uintptr_t)POINTER(x)) static Object Internal_Make_Context (int finalize, XtAppContext context) { |