Show
Ignore:
Timestamp:
08/25/07 22:49:09 (15 months ago)
Author:
krobillard
Message:

UTF-8 strings can now be read.
ur_makeString() now takes UCell argument.

Files:
1 modified

Legend:

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

    r387 r453  
    11/*============================================================================ 
    22    Urlan Interpreter 
    3     Copyright (C) 2005-2006  Karl Robillard 
     3    Copyright (C) 2005-2007  Karl Robillard 
    44 
    55    This library is free software; you can redistribute it and/or 
     
    145145        if( cp ) 
    146146        { 
    147             UIndex strN = ur_makeString( cp, -1 ); 
    148  
    149             ur_initType( tos, UT_STRING ); 
    150             ur_setSeries( tos, strN, 0 ); 
     147            ur_makeString( tos, cp, -1 ); 
    151148            return; 
    152149        }