Changeset 157 for trunk/thune/make.c
- Timestamp:
- 05/25/06 15:20:35 (3 years ago)
- Files:
-
- 1 modified
-
trunk/thune/make.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/make.c
r152 r157 597 597 598 598 /** 599 Append word!, lit-word!, or set-word! value to block.599 Append word!, lit-word!, set-word!, or get-word! value to block. 600 600 */ 601 601 UCell* ur_appendWord( UBlock* blk, int type, const char* name, int len ) … … 607 607 cell->word.wordBlk = 0; //GLOBAL_WORD_BLKN; 608 608 cell->word.valBlk = GLOBAL_VAL_BLKN; 609 //cell->word.index = -1;609 cell->word.index = UR_UNBOUND; 610 610 cell->word.atom = ur_intern( name, len ); 611 611 612 //if( type == UT_SETWORD )612 if( type != UT_LITWORD ) 613 613 { 614 614 // Add word to global context. … … 839 839 binN = ur_makeBinary( ur_int(tos) ); 840 840 ur_setType(res, UT_STRING); 841 //ur_setEncoding(res, UR_ENC_ASCII); 841 842 ur_setSeries(res, binN, 0); 842 843 } … … 852 853 853 854 ur_setType(res, UT_STRING); 855 //ur_setEncoding(res, UR_ENC_ASCII); 854 856 ur_setSeries(res, binN, 0); 855 857 } … … 864 866 865 867 ur_setType(res, UT_STRING); 868 //ur_setEncoding(res, UR_ENC_ASCII); 866 869 ur_setSeries(res, binN, 0); 867 870 }
