Changeset 152 for trunk/thune/context.c
- Timestamp:
- 05/14/06 02:10:45 (3 years ago)
- Files:
-
- 1 modified
-
trunk/thune/context.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/context.c
r129 r152 168 168 169 169 ur_setType( it, UT_WORD ); 170 //it->word.wordBlk =ctx->ctx.wordBlk;170 it->word.wordBlk = 0; //ctx->ctx.wordBlk; 171 171 it->word.valBlk = ctx->ctx.valBlk; 172 172 it->word.index = wrdN; … … 495 495 while( it != end ) 496 496 { 497 if( ur_is(it, UT_WORD) || 498 ur_is(it, UT_SETWORD) || 499 ur_is(it, UT_GETWORD) || 500 ur_is(it, UT_LITWORD) || 501 ur_is(it, UT_OPCODE) ) 497 if( ur_isAWord(it) || ur_is(it, UT_OPCODE) || ur_is(it, UT_SELECTOR) ) 502 498 { 503 499 _bindWord( it ); … … 506 502 { 507 503 UCell* path1 = ur_blockPtr( it->series.n )->ptr.cells; 508 if( ur_is(path1, UT_WORD) || 509 ur_is(path1, UT_SETWORD) || 510 ur_is(path1, UT_GETWORD) ) 504 if( ur_isAWord(path1) ) 511 505 { 512 506 _bindWord( path1 );
