From d5259dcf27ca06470f01b1a26b3834f23dc9380c Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 23 Jan 2016 21:26:49 +0100 Subject: [PATCH] add missing match group in regex config example --- bin/fcscs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = ( -- 2.43.2