Changeset 214
- Timestamp:
- 05/19/2005 01:07:42 (4 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
TODO (added)
-
ext/ruby/ext/syck/rubyext.c (modified) (2 diffs)
-
lib/emitter.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r213 r214 8 8 - No anchors on simple strings. 9 9 - Outputing of domain and private types and anchors properly. 10 - Memory leak in mktime. 11 12 lib/emitter.c: scale back seq-in-map on a typed seq. prevents the shift/reduce 13 problem with the parser. 10 14 11 15 - version: 0.55 -
trunk/ext/ruby/ext/syck/rubyext.c
r213 r214 1 /* -*- indent-tabs-mode: nil -*- */ 1 2 /* 2 3 * rubyext.c … … 274 275 MEMCPY(padded, ptr + 1, char, end - (ptr + 1)); 275 276 usec = strtol(padded, NULL, 10); 277 S_FREE(padded); 276 278 } 277 279 else -
trunk/lib/emitter.c
r213 r214 1022 1022 syck_emitter_write( e, "?", 1 ); 1023 1023 parent->status = syck_lvl_mapx; 1024 } else { 1024 /* shortcut -- the lvl->anctag check should be unneccesary but 1025 * there is a nasty shift/reduce in the parser on this point and 1026 * i'm not ready to tickle it. */ 1027 } else if ( lvl->anctag == 0 ) { 1025 1028 lvl->spaces = parent->spaces; 1026 1029 }