Show
Ignore:
Timestamp:
06/11/07 04:07:02 (18 months ago)
Author:
krobillard
Message:

Thune - Simplified macros with macro! datatype.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/thune/thread_safe/print.c

    r390 r408  
    717717            ur_strCatCell( ut, out, UR_ENC_ASCII, val ); 
    718718            break; 
     719 
     720        case UT_BINARY: 
     721            _binCellToStr( ut, out, val ); 
     722            break; 
    719723#if 0 
    720724        case OT_TAG:        { 
     
    728732        case OT_BITSET:     append(out, "make bitset! ", 13); 
    729733                            // Fall through to binary. 
    730  
    731         case OT_BINARY:     _binCellToStr( out, val ); 
    732                             break; 
    733734#endif 
    734735        case UT_CHAR:       append1( ur_char(val), out );