summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c2e6b6d)
raw | patch | inline | side by side (parent: c2e6b6d)
author | Jim Meyering <jim@meyering.net> | |
Fri, 26 Oct 2007 10:48:41 +0000 (12:48 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 27 Oct 2007 06:16:51 +0000 (23:16 -0700) |
Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
templates/hooks--pre-commit | patch | blob | history |
index 18b87309f65be23794b87260e08c547f5deeefce..a19279b3e41653b519b8c3b266bc7845f3648c4b 100644 (file)
if (/\s$/) {
bad_line("trailing whitespace", $_);
}
- if (/^\s* /) {
+ if (/^\s* \t/) {
bad_line("indent SP followed by a TAB", $_);
}
if (/^(?:[<>=]){7}/) {