]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
scripts: commit-msg: tweak 72-column test to avoid a false-positive
authorJim Meyering <meyering@redhat.com>
Wed, 23 Nov 2011 08:02:51 +0000 (09:02 +0100)
committerJim Meyering <meyering@redhat.com>
Wed, 23 Nov 2011 08:05:08 +0000 (09:05 +0100)
* scripts/git-hooks/commit-msg: Don't warn about a line that is
longer than 72 if it is a comment.  Git-generated comments would
occasionally trigger this.

scripts/git-hooks/commit-msg

index 7d0891efc2130b3185a00d61070a171bc541578f..22f595ff2c6e0c6423bbbf1dd0441975407907cc 100755 (executable)
@@ -101,7 +101,7 @@ sub check_msg($$)
   # Limit line length to allow for the ChangeLog's leading TAB.
   foreach my $line (@line)
     {
-      72 < length $line
+      72 < length $line && $line =~ /^[^#]/
         and return 'line longer than 72';
     }