Changeset 282 for trunk/thune/eval.c

Show
Ignore:
Timestamp:
09/24/06 04:43:27 (2 years ago)
Author:
krobillard
Message:

Rune - Mandel test works.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/eval.c

    r276 r282  
    17061706 
    17071707// (val -- logic) 
    1708 UR_CALL( uc_zero ) 
     1708UR_CALL( uc_zeroQ ) 
    17091709{ 
    17101710    int n; 
     
    21662166    while( it != end ) 
    21672167    { 
    2168         if( ur_is(it, UT_WORD) ) 
     2168        if( ur_is(it, UT_WORD) || ur_is(it, UT_OPCODE) ) 
    21692169        { 
    21702170            int wrdN = ur_lookup( cc, it->word.atom ); 
     
    24112411 
    24122412// (sig body ['loop] -- func) 
     2413#ifdef LANG_RUNE 
     2414UR_CALL_PUB( uc_func ) 
     2415#else 
    24132416UR_CALL( uc_func ) 
     2417#endif 
    24142418{ 
    24152419    UIndex bodN; 
     
    26012605    { uc_equal,        "eq?" }, 
    26022606    { uc_sameQ,        "same?" }, 
    2603     { uc_zero,         "zero?" }, 
     2607    { uc_zeroQ,        "zero?" }, 
    26042608    { uc_typeQ,        "type?" }, 
    26052609    { uc_typeQ_word,   "type?.word" },