Changeset 455 for branches/thune/thread_safe/make.c
- Timestamp:
- 08/27/07 21:05:56 (15 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/make.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/make.c
r453 r455 668 668 Special characters are translated. 669 669 */ 670 U Indexur_makeStringT( UThread* ut, UCell* res, const char* txt, int len )670 UString* ur_makeStringT( UThread* ut, UCell* res, const char* txt, int len ) 671 671 { 672 672 UIndex strN; … … 711 711 ur_initString( res, strN, 0 ); 712 712 ur_setEncoding( res, UR_ENC_UTF16 ); 713 return str N;713 return str; 714 714 } 715 715 *out++ = ch; … … 723 723 724 724 ur_initString( res, strN, 0 ); 725 return str N;725 return str; 726 726 } 727 727 … … 1783 1783 if( spA ) 1784 1784 { 1785 binN =ur_makeString( res, spA, spB - spA );1785 ur_makeString( res, spA, spB - spA ); 1786 1786 } 1787 1787 else
