summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/check-whitespace.sh11
1 files changed, 5 insertions, 6 deletions
diff --git a/tools/check-whitespace.sh b/tools/check-whitespace.sh
index 84356f20..53483312 100644
--- a/tools/check-whitespace.sh
+++ b/tools/check-whitespace.sh
@@ -8,11 +8,10 @@ then
fail=1
fi
-# TODO: enable tab checking once all Empathy switched to TP coding style
-#if grep -n ' ' "$@"
-#then
-# echo "^^^ The above files contain tabs"
-# fail=1
-#fi
+if grep -n ' ' "$@"
+then
+ echo "^^^ The above files contain tabs"
+ fail=1
+fi
exit $fail