Skip to content

Commit 1c3615c

Browse files
authored
Merge pull request #3255 from masatake/YAML-accept-dot-yaml
Yaml: accept "yaml" as file extension
2 parents e179627 + f3ff60a commit 1c3615c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsers/yaml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ static void findYamlTags (void)
169169

170170
extern parserDefinition* YamlParser (void)
171171
{
172-
static const char *const extensions [] = { "yml", NULL };
172+
static const char *const extensions [] = { "yml", "yaml", NULL };
173173
parserDefinition* const def = parserNew ("Yaml");
174174

175175
def->kindTable = YamlKinds;

0 commit comments

Comments
 (0)