Remove trailing whitespace from Perl scripts

This commit is contained in:
Orestis Floros
2018-03-15 21:33:45 +02:00
parent c1e622be27
commit 3f4268561d
8 changed files with 16 additions and 16 deletions

View File

@ -77,7 +77,7 @@ for my $line (@lines) {
($line =~ /
^\s* # skip leading whitespace
([a-z_]+ \s* = \s*|) # optional identifier
(.*?) -> \s* # token
(.*?) -> \s* # token
(.*) # optional action
/x);