[PATCH] hooks-pre-commit: use \t, rather than a literal TAB in regexp

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Jim Meyering
Date: Friday, October 26, 2007 - 3:48 am

Signed-off-by: Jim Meyering <meyering@redhat.com>
---
 templates/hooks--pre-commit |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/templates/hooks--pre-commit b/templates/hooks--pre-commit
index 18b8730..a19279b 100644
--- a/templates/hooks--pre-commit
+++ b/templates/hooks--pre-commit
@@ -58,7 +58,7 @@ perl -e '
 	    if (/\s$/) {
 		bad_line("trailing whitespace", $_);
 	    }
-	    if (/^\s* 	/) {
+	    if (/^\s* \t/) {
 		bad_line("indent SP followed by a TAB", $_);
 	    }
 	    if (/^(?:[<>=]){7}/) {
-- 
1.5.3.4.383.gd90a7
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] hooks-pre-commit: use \t, rather than a literal TA ..., Jim Meyering, (Fri Oct 26, 3:48 am)