Skip to content

Commit

Permalink
Give a bare 'fc' the same treatment as bare 'lc' or 'uc'
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 25, 2018
1 parent 7c8bbc8 commit 8ffbc43
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Perl6/Grammar.nqp
Expand Up @@ -3465,8 +3465,9 @@ grammar Perl6::Grammar is HLL::Grammar does STD {
my %deftrap := nqp::hash(
'say', 1, 'print', 1, 'abs', 1, 'chomp', 1, 'chop', 1, 'chr', 1, 'cos', 1,
'defined', 1, 'exp', 1, 'lc', 1, 'log', 1, 'mkdir', 1, 'ord', 1, 'reverse', 1,
'rmdir', 1, 'sin', 1, 'split', 1, 'sqrt', 1, 'uc', 1, 'unlink', 1, 'WHAT', 2,
'WHICH', 2, 'WHERE', 2, 'HOW', 2, 'WHENCE', 2, 'WHO', 2, 'VAR', 2, 'any', 2,
'rmdir', 1, 'sin', 1, 'split', 1, 'sqrt', 1, 'uc', 1, 'unlink', 1, 'fc', 1,
'WHAT', 2, 'WHICH', 2, 'WHERE', 2, 'HOW', 2, 'WHENCE', 2, 'WHO', 2, 'VAR', 2, 'any', 2,
'all', 2, 'none', 2, 'one', 2, 'set', 2, 'bag', 2, 'tclc', 2, 'wordcase', 2, 'put', 2,
);
Expand Down

0 comments on commit 8ffbc43

Please sign in to comment.