Changeset 346 for libyaml/branches/stable/src/parser.c
- Timestamp:
- 02/23/09 14:59:19 (4 years ago)
- File:
-
- 1 edited
-
libyaml/branches/stable/src/parser.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libyaml/branches/stable/src/parser.c
r273 r346 1281 1281 1282 1282 else if (token->type == YAML_TAG_DIRECTIVE_TOKEN) { 1283 yaml_tag_directive_t value = {1284 token->data.tag_directive.handle,1285 token->data.tag_directive.prefix1286 }; 1283 yaml_tag_directive_t value; 1284 value.handle = token->data.tag_directive.handle; 1285 value.prefix = token->data.tag_directive.prefix; 1286 1287 1287 if (!yaml_parser_append_tag_directive(parser, value, 0, 1288 1288 token->start_mark))
Note: See TracChangeset
for help on using the changeset viewer.
