Changeset 25 for trunk/orca/context.c

Show
Ignore:
Timestamp:
02/06/06 23:30:15 (3 years ago)
Author:
krobillard
Message:

series which/index renamed to n/it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/context.c

    r1 r25  
    298298        if( (it->type == OT_BLOCK) || (it->type == OT_PAREN) ) 
    299299        { 
    300             OBlock* blk = orCopyBlock( it->index, it->series.index, 1 ); 
     300            OBlock* blk = orCopyBlock( it->index, it->series.it, 1 ); 
    301301            orSetSeries( copy, orBlockN(blk), 0 );  
    302302        } 
     
    696696 
    697697        blk = orBLOCK( a1 ); 
    698         it  = blk->values + a1->series.index; 
     698        it  = blk->values + a1->series.it; 
    699699        end = blk->values + blk->used; 
    700700 
     
    725725    orRefPop( 1 ); 
    726726 
    727     orEvalBlock( orBlockPtr( a2->index ), a2->series.index ); 
     727    orEvalBlock( orBlockPtr( a2->index ), a2->series.it ); 
    728728} 
    729729 
     
    975975    OValue* a2 = a1 + 1; 
    976976    OIndex serN = a2->index; 
    977     OIndex si   = a2->series.index; 
     977    OIndex si   = a2->series.it; 
    978978    OIndex send; 
    979979    OIndex body = (a1 + 2)->index; 
    980     OIndex bi   = (a1 + 2)->series.index; 
     980    OIndex bi   = (a1 + 2)->series.it; 
    981981    OValue saveA1; 
    982982 
     
    984984    { 
    985985        blk = orBLOCK( a1 ); 
    986         wval = blk->values + a1->series.index; 
     986        wval = blk->values + a1->series.it; 
    987987        wend = blk->values + blk->used; 
    988988 
     
    10851085            orResultNONE; 
    10861086 
    1087             if( a2->series.index ) 
     1087            if( a2->series.it ) 
    10881088            { 
    10891089                OValue* begin; 
     
    10941094                blk = orBLOCK(a2); 
    10951095                begin = blk->values; 
    1096                 it    = begin + a2->series.index; 
     1096                it    = begin + a2->series.it; 
    10971097 
    10981098                while( it->LIST_NEXT > 0 )