Changeset 417 for branches/thune/thread_safe/eval.c
- Timestamp:
- 06/22/07 20:53:35 (17 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/eval.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/eval.c
r408 r417 1128 1128 else if( ur_is(val, UT_SLICE) && (ur_sliceDT(val) == UT_STRING) ) 1129 1129 { 1130 ur_sliceDT(val) = UT_BINARY; 1130 if( ur_encCharSize(val) == 1 ) 1131 ur_sliceDT(val) = UT_BINARY; 1131 1132 } 1132 1133 else if( ur_is(val, UT_BITSET) ) 1133 1134 { 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); 1134 1142 ur_type(val) = UT_BINARY; 1135 1143 }
