Changeset 499 for trunk/thune/thune.c
- Timestamp:
- 12/05/07 03:12:00 (12 months ago)
- Files:
-
- 1 modified
-
trunk/thune/thune.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/thune.c
r498 r499 172 172 UThread* ut = (UThread*) arg; 173 173 ur_eval( ut, ut->tos[1].series.n, 0 ); 174 ur_thread Free( ut );174 ur_threadDestroy( ut ); 175 175 return 0; 176 176 } … … 203 203 UR_CALL( uc_thread ) 204 204 { 205 if( ur_is(tos, UT_BLOCK) ||ur_is(tos, UT_STRING) )205 if( /*ur_is(tos, UT_BLOCK) ||*/ ur_is(tos, UT_STRING) ) 206 206 { 207 207 UThread* thr = ur_threadMake( ut->env, 64, 128 ); … … 217 217 char* cpA; 218 218 char* cpB; 219 ur_seriesMem( ut, tos, &cpA, &cpB ); 220 thr->tos[1].series.n = ur_tokenize( thr, cpA, cpB ); 219 UIndex blkN; 220 221 ur_binaryMem( ut, tos, &cpA, &cpB ); 222 blkN = ur_tokenize( thr, cpA, cpB ); 223 if( ! blkN ) 224 return; 225 ur_infuseOpcodes( thr, blkN ); 226 thr->tos[1].series.n = blkN; 221 227 } 222 228 … … 232 238 } 233 239 234 #if 1240 #if 0 235 241 { 236 242 void* status;
