Skip to content

Commit

Permalink
scheme: Add racket support to scheme parser
Browse files Browse the repository at this point in the history
  • Loading branch information
plv committed Nov 10, 2019
1 parent 47de0ff commit dbeba03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parsers/scheme.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ static void findSchemeTags (void)
extern parserDefinition* SchemeParser (void)
{
static const char *const extensions [] = {
"SCM", "SM", "sch", "scheme", "scm", "sm", NULL
"SCM", "SM", "sch", "scheme", "scm", "sm", "rkt", NULL
};
static const char *const aliases [] = {
"gosh", "guile", NULL
"gosh", "guile", "racket", NULL
};
parserDefinition* def = parserNew ("Scheme");
def->kindTable = SchemeKinds;
Expand Down

0 comments on commit dbeba03

Please sign in to comment.