Show
Ignore:
Timestamp:
06/22/07 20:53:35 (17 months ago)
Author:
krobillard
Message:

Added ur_seriesMem() & fold helper.

Files:
1 modified

Legend:

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

    r408 r417  
    11281128            else if( ur_is(val, UT_SLICE) && (ur_sliceDT(val) == UT_STRING) ) 
    11291129            { 
    1130                 ur_sliceDT(val) = UT_BINARY; 
     1130                if( ur_encCharSize(val) == 1 ) 
     1131                    ur_sliceDT(val) = UT_BINARY; 
    11311132            } 
    11321133            else if( ur_is(val, UT_BITSET) ) 
    11331134            { 
     1135                ur_type(val) = UT_BINARY; 
     1136            } 
     1137            else if( ur_is(val, UT_VECTOR) ) 
     1138            { 
     1139                UIndex binN; 
     1140                binN = ur_makeBinaryFrom( ut, val ); 
     1141                ur_setSeries(val, binN, 0); 
    11341142                ur_type(val) = UT_BINARY; 
    11351143            }