Revert "ENH: Added DOS-style line ending check to git hook"

This reverts commit 102f797016.
This commit is contained in:
andy
2010-07-23 12:06:51 +01:00
parent d42448a057
commit 7c1ca51598

View File

@ -97,8 +97,8 @@ dieOnBadFiles()
#
checkIllegalCode()
{
reBad="(N""abla|"$'\t'"|"$'\r\n'")"
msgBad="N""abla, <TAB>, or DOS-style line ending"
reBad="(N""abla|"$'\t'")"
msgBad="N""abla or <TAB>"
badFiles=$(
for f in $fileList
@ -219,5 +219,4 @@ checkLineLength
exit 0
#------------------------------------------------------------------------------