[Motiftools-xmt-cvs] CVS: xmt/Xmt XmStringCvt.c,1.2,1.3
Brought to you by:
motiftools
From: Grant M. <grm...@us...> - 2003-08-14 02:29:29
|
Update of /cvsroot/motiftools/xmt/Xmt In directory sc8-pr-cvs1:/tmp/cvs-serv31433/Xmt Modified Files: XmStringCvt.c Log Message: Compile-configuration to fix @f[] with patched Motif Index: XmStringCvt.c =================================================================== RCS file: /cvsroot/motiftools/xmt/Xmt/XmStringCvt.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** XmStringCvt.c 19 Sep 2001 02:57:18 -0000 1.2 --- XmStringCvt.c 14 Aug 2003 02:25:25 -0000 1.3 *************** *** 10,13 **** --- 10,16 ---- * * $Log$ + * Revision 1.3 2003/08/14 02:25:25 grmcdorman + * Compile-configuration to fix @f[] with patched Motif + * * Revision 1.2 2001/09/19 02:57:18 grmcdorman * This change makes the following modifications: *************** *** 100,104 **** component_type = XmSTRING_COMPONENT_TAB; break; ! case 'f': /* * treat @f the same as an unterminated @b. --- 103,111 ---- component_type = XmSTRING_COMPONENT_TAB; break; ! case 'f': ! #ifdef USE_XmSTRING_COMPONENT ! component_type = XmSTRING_COMPONENT_TAG; ! break; ! #else /* * treat @f the same as an unterminated @b. *************** *** 107,110 **** --- 114,118 ---- * to make as much sense, anyway. */ + #endif case 'b': component_type = XmSTRING_COMPONENT_RENDITION_BEGIN; |