Changeset 453 for branches/thune/thread_safe/tokenize.c
- Timestamp:
- 08/25/07 22:49:09 (15 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/tokenize.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/tokenize.c
r452 r453 492 492 #endif 493 493 break; 494 495 default: 496 syntaxError( "Unprintable/Non-ASCII Input" ); 494 497 } 495 498 } … … 1050 1053 string_end: 1051 1054 1052 // Make string before appending cell (in case GC is called). 1055 // Mark cell as unset in case GC is called by ur_makeString. 1056 cell = ur_appendCell( BLOCK, UT_UNSET ); 1057 1053 1058 ++token; 1054 tn = ur_makeString( token, it - token ); 1055 1056 cell = ur_appendCell( BLOCK, UT_STRING ); 1057 ur_setSeries( cell, tn, 0 ); 1059 ur_makeString( cell, token, it - token ); 1058 1060 1059 1061 ++it;
