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