Changeset 426 for branches/thune/thread_safe/thune.c
- Timestamp:
- 07/05/07 04:03:51 (17 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/thune.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/thune.c
r415 r426 379 379 UR_S_PUSH( *val ); 380 380 ur_type( UR_TOS ) = UT_WORD; 381 break; 382 383 case UT_LITSELECT: 384 if( UR_TOS >= ut->eos ) 385 goto stack_overflow; 386 UR_S_PUSH( *val ); 387 ur_type( UR_TOS ) = UT_SELECT; 381 388 break; 382 389 … … 822 829 823 830 case UT_SETWORD: 824 val = ur_wordCell( ut, val ); 825 if( ! val ) 831 if( ! ur_setWord( ut, val, UR_TOS ) ) 826 832 goto throw_cc; 827 ur_copyCell(val, *UR_TOS);828 833 UR_S_DROP; 829 834 break;
