Changeset 398 for branches/thune
- Timestamp:
- 05/22/07 20:53:15 (18 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/parse.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/parse.c
r392 r398 835 835 goto failed; 836 836 tval = iblk->ptr.cells + pos; 837 if( (ur_is(tval, UT_WORD) || ur_is(tval, UT_LITWORD)) 837 if( (ur_is(tval, UT_WORD) || 838 ur_is(tval, UT_LITWORD) || 839 ur_is(tval, UT_OPCODE)) 838 840 && (ur_atom(tval) == ur_atom(rit)) ) 839 841 { … … 980 982 { 981 983 tval = iblk->ptr.cells + pos; 982 if( ! (ur_is(tval, UT_WORD) || ur_is(tval, UT_LITWORD)) ) 984 if( ! (ur_is(tval, UT_WORD) || 985 ur_is(tval, UT_LITWORD) || 986 ur_is(tval, UT_OPCODE)) ) 983 987 break; 984 988 if( ur_atom(tval) != atom )
