Changeset 164 for trunk/thune/make.c
- Timestamp:
- 06/03/06 19:42:11 (3 years ago)
- Files:
-
- 1 modified
-
trunk/thune/make.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/make.c
r162 r164 637 637 cell->word.wordBlk = 0; //GLOBAL_WORD_BLKN; 638 638 cell->word.valBlk = GLOBAL_VAL_BLKN; 639 cell->word.index = UR_UNBOUND;640 639 cell->word.atom = ur_intern( name, len ); 641 640 … … 644 643 // Add word to global context. 645 644 cell->word.index = ur_internWord( &ur_global, cell->word.atom ); 645 } 646 else 647 { 648 cell->word.index = UR_UNBOUND; 646 649 } 647 650 … … 816 819 ur_setSeries(res, blkN, 0); 817 820 } 821 } 822 else if( ur_isABlock(tos) ) 823 { 824 ur_copyCell( res, *tos ); 825 ur_clone( res, UR_COPY_ALL, 1 ); 818 826 } 819 827 break; … … 912 920 return; 913 921 } 914 //else if( ur_is(res, UT_CONTEXT) ) 915 //{ 916 //} 922 else if( ur_is(res, UT_CONTEXT) ) 923 { 924 ur_copyCell( res, *tos ); 925 ur_clone( res, UR_COPY_ALL, 1 ); 926 } 917 927 break; 918 928
