Changeset 34241

Show
Ignore:
Timestamp:
07/02/09 19:48:49 (9 months ago)
Author:
kazuho
Message:

do not escape whitespace (0x20)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/picojson/trunk/picojson.h

    r34240 r34241  
    259259#undef MAP 
    260260      default: 
    261         if ((unsigned char)*i <= 0x20 || *i == 0x7f) { 
     261        if ((unsigned char)*i < 0x20 || *i == 0x7f) { 
    262262          char buf[7]; 
    263263          sprintf(buf, "\\u%04x", *i & 0xff);