summaryrefslogtreecommitdiff
path: root/generate-command-parser.pl
diff options
context:
space:
mode:
authorOrestis Floros <orestisf1993@gmail.com>2018-03-15 21:33:45 +0200
committerOrestis Floros <orestisf1993@gmail.com>2018-03-15 21:33:45 +0200
commit3f4268561d4482e2c770d7c6b7b32d7ce8c82568 (patch)
treed31b6e093695a296bb16bcefa828e7a663010e6c /generate-command-parser.pl
parentc1e622be27ad6695d0bc12b82de71a14b233ecb4 (diff)
downloadi3-3f4268561d4482e2c770d7c6b7b32d7ce8c82568.tar.gz
i3-3f4268561d4482e2c770d7c6b7b32d7ce8c82568.zip
Remove trailing whitespace from Perl scripts
Diffstat (limited to 'generate-command-parser.pl')
-rwxr-xr-xgenerate-command-parser.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/generate-command-parser.pl b/generate-command-parser.pl
index 4c45b6ed..052e4c66 100755
--- a/generate-command-parser.pl
+++ b/generate-command-parser.pl
@@ -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);