about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2015-07-14 13:51:27 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2015-07-14 13:51:27 +0200
commitf71bc5671244b33858c9fc05aa4498c61d035d93 (patch)
tree91e27dbb423d544a0fa07275b4b795f6eba18ed1
parent7db0b1791ceecc0ae610605d06ecbb58fbff498a (diff)
downloadxtools-f71bc5671244b33858c9fc05aa4498c61d035d93.tar.gz
xtools-f71bc5671244b33858c9fc05aa4498c61d035d93.tar.xz
xtools-f71bc5671244b33858c9fc05aa4498c61d035d93.zip
xlint: don't count closing quote as char for short_desc.
-rwxr-xr-xxlint2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlint b/xlint
index 90dd75e..872cb07 100755
--- a/xlint
+++ b/xlint
@@ -127,7 +127,7 @@ for template; do
 	if [ -f "$template" ]; then
 	scan 'short_desc=.*\."' "unwanted trailing dot in short_desc"
 	scan 'short_desc=["'\''][a-z]' "short_desc should start uppercase"
-	scan 'short_desc=["'\''].{72}' "short_desc should be less than 72 chars"
+	scan 'short_desc=["'\''].{73}' "short_desc should be less than 72 chars"
 	scan 'license=.*[^L]GPL[^-]' "license GPL without version"
 	scan 'license=.*LGPL[^-]' "license LGPL without version"
 	if ! grep -q vlicense "$template"; then