Changeset 45 for trunk/orca

Show
Ignore:
Timestamp:
02/12/06 17:13:56 (3 years ago)
Author:
krobillard
Message:

OR_CONFIG_REBOL foreach compiles again.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/context.c

    r42 r45  
    809809    OValue* a2 = a1 + 1; 
    810810    OIndex serN = a2->index; 
    811     OIndex si   = a2->series.index; 
     811    OIndex si   = a2->series.it; 
    812812    OIndex send; 
    813813    OIndex body = (a1 + 2)->index; 
    814     OIndex bi   = (a1 + 2)->series.index; 
     814    OIndex bi   = (a1 + 2)->series.it; 
    815815 
    816816 
     
    835835 
    836836        orRefPush( OT_BLOCK, a1->index ); 
    837         orMakeContext( &ctx, blk->used - a1->series.index ); 
     837        orMakeContext( &ctx, blk->used - a1->series.it ); 
    838838        orRefPop( 1 ); 
    839839 
    840         it  = blk->values + a1->series.index; 
     840        it  = blk->values + a1->series.it; 
    841841        end = blk->values + blk->used; 
    842842 
     
    983983            orResultNONE; 
    984984 
    985             if( a2->series.index ) 
     985            if( a2->series.it ) 
    986986            { 
    987987                OValue* begin; 
     
    990990                blk = orBLOCK(a2); 
    991991                begin = blk->values; 
    992                 it    = begin + a2->series.index; 
     992                it    = begin + a2->series.it; 
    993993 
    994994                while( it->LIST_NEXT > 0 )