Changeset 25 for trunk/orca/context.c
- Timestamp:
- 02/06/06 23:30:15 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/context.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/context.c
r1 r25 298 298 if( (it->type == OT_BLOCK) || (it->type == OT_PAREN) ) 299 299 { 300 OBlock* blk = orCopyBlock( it->index, it->series.i ndex, 1 );300 OBlock* blk = orCopyBlock( it->index, it->series.it, 1 ); 301 301 orSetSeries( copy, orBlockN(blk), 0 ); 302 302 } … … 696 696 697 697 blk = orBLOCK( a1 ); 698 it = blk->values + a1->series.i ndex;698 it = blk->values + a1->series.it; 699 699 end = blk->values + blk->used; 700 700 … … 725 725 orRefPop( 1 ); 726 726 727 orEvalBlock( orBlockPtr( a2->index ), a2->series.i ndex);727 orEvalBlock( orBlockPtr( a2->index ), a2->series.it ); 728 728 } 729 729 … … 975 975 OValue* a2 = a1 + 1; 976 976 OIndex serN = a2->index; 977 OIndex si = a2->series.i ndex;977 OIndex si = a2->series.it; 978 978 OIndex send; 979 979 OIndex body = (a1 + 2)->index; 980 OIndex bi = (a1 + 2)->series.i ndex;980 OIndex bi = (a1 + 2)->series.it; 981 981 OValue saveA1; 982 982 … … 984 984 { 985 985 blk = orBLOCK( a1 ); 986 wval = blk->values + a1->series.i ndex;986 wval = blk->values + a1->series.it; 987 987 wend = blk->values + blk->used; 988 988 … … 1085 1085 orResultNONE; 1086 1086 1087 if( a2->series.i ndex)1087 if( a2->series.it ) 1088 1088 { 1089 1089 OValue* begin; … … 1094 1094 blk = orBLOCK(a2); 1095 1095 begin = blk->values; 1096 it = begin + a2->series.i ndex;1096 it = begin + a2->series.it; 1097 1097 1098 1098 while( it->LIST_NEXT > 0 )
