Changeset 266 for trunk/thune/eval.c
- Timestamp:
- 08/30/06 18:59:53 (2 years ago)
- Files:
-
- 1 modified
-
trunk/thune/eval.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/eval.c
r262 r266 715 715 str->ptr.c + val->series.it, 716 716 str->ptr.c + str->used, 0 ); 717 if( tblkN )718 {719 _infuseOpcodes( ur_thread, tblkN ); 720 ur_setSeries(val, tblkN, 0);721 goto do_block;722 }717 if( ! tblkN ) 718 goto throw_cc; 719 720 _infuseOpcodes( ur_thread, tblkN ); 721 ur_setSeries(val, tblkN, 0); 722 goto do_block; 723 723 } 724 724 goto execute; … … 1405 1405 return ur_eval( ur_thread, blkN, 0 ); 1406 1406 } 1407 return UR_EVAL_ERROR; 1407 1408 } 1408 1409 return UR_EVAL_OK; … … 1425 1426 1426 1427 /** 1427 Th ow error from call. The error is pushed onto the stack.1428 Throw error from call. The error is pushed onto the stack. 1428 1429 */ 1429 1430 void ur_throwErr( UThread* ur_thread, int exceptionType, const char* fmt, ... )
