Forbid escaped singlequote in doublequotes

See also issue #68
This commit is contained in:
Tina Müller
2017-11-30 00:35:58 +01:00
parent e5aadc7349
commit 6cc8b63ff7
-4
View File
@@ -3166,10 +3166,6 @@ yaml_parser_scan_flow_scalar(yaml_parser_t *parser, yaml_token_t *token,
*(string.pointer++) = '/';
break;
case '\'':
*(string.pointer++) = '\'';
break;
case '\\':
*(string.pointer++) = '\\';
break;