From: Simon Ruderich Date: Sat, 23 Jan 2016 20:26:49 +0000 (+0100) Subject: add missing match group in regex config example X-Git-Url: https://ruderich.org/simon/gitweb/?p=fcscs%2Ffcscs.git;a=commitdiff_plain;h=d5259dcf27ca06470f01b1a26b3834f23dc9380c add missing match group in regex config example --- diff --git a/bin/fcscs b/bin/fcscs index abe9712..25a5302 100755 --- a/bin/fcscs +++ b/bin/fcscs @@ -958,7 +958,7 @@ my %setting = ( Example: # Select all non-whitespace characters when searching for paths. - $config{regex}{path} = qr{\S+}; + $config{regex}{path} = qr{(\S+)}; =cut my %regex = (