Show
Ignore:
Timestamp:
08/19/07 18:31:07 (15 months ago)
Author:
krobillard
Message:

Tokenizer handles special char!.
ur_toStrT() now thread-safe for char! values.
Fixed Vim char! syntax.

Files:
1 modified

Legend:

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

    r450 r452  
    538538  Returns -1 if failed. 
    539539*/ 
    540 static int _escapedCharacter( const char** cp, const char* end ) 
     540int ur_escapedCharacter( const char** cp, const char* end ) 
    541541{ 
    542542    int val; 
     
    649649        { 
    650650            ++cp; 
    651             *out++ = _escapedCharacter( &cp, end );  
     651            *out++ = ur_escapedCharacter( &cp, end );  
    652652        } 
    653653        else 
     
    14811481                    { 
    14821482                        ++spA; 
    1483                         ur_char(res) = _escapedCharacter( (const char**) &spA, 
    1484                                                           spB );  
     1483                        ur_char(res) = ur_escapedCharacter( 
     1484                                            (const char**) &spA, spB );  
    14851485                    } 
    14861486                    else