diff --git a/commit-check b/commit-check index 3cfd7c6..ea3e86a 100755 --- a/commit-check +++ b/commit-check @@ -26,7 +26,7 @@ while (<$commitfile>) { } err "Should be empty" if $lineno == 2 && /.+/; - err "Longer than 80 characters" if /^.{73,}/; + err "Longer than 72 characters" if /^.{73,}/; } close $commitfile;