Skip to content

Commit f3ff60a

Browse files
committed
Yaml: accept "yaml" as file extension
Signed-off-by: Masatake YAMATO <[email protected]>
1 parent e179627 commit f3ff60a

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)