aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2010-08-18 15:24:44 -0700
committerPatrick Walton <[email protected]>2010-08-18 16:04:50 -0700
commit1d10582d622ce6867a85d9e4e8c279ab7e4ab5ab (patch)
tree3611bb8bd24cf4782399445908efc7fdf9844b8d /src
parentSimplify lexer/parser structure to use stdio_reader. (diff)
downloadrust-1d10582d622ce6867a85d9e4e8c279ab7e4ab5ab.tar.xz
rust-1d10582d622ce6867a85d9e4e8c279ab7e4ab5ab.zip
Revert "Don't complain about \r when core.autocrlf is on in Git"
This reverts commit 828afaa2fa4cc9e3e53bda0ae3073abfcfa151ca.
Diffstat (limited to 'src')
-rw-r--r--src/etc/tidy.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/etc/tidy.py b/src/etc/tidy.py
index 4202950d..eff967bf 100644
--- a/src/etc/tidy.py
+++ b/src/etc/tidy.py
@@ -1,15 +1,10 @@
#!/usr/bin/python
-import sys, fileinput, subprocess
+import sys, fileinput
err=0
cols=78
-config_proc=subprocess.Popen([ "git", "config", "core.autocrlf" ],
- stdout=subprocess.PIPE)
-result=config_proc.communicate()[0]
-autocrlf=result.strip() == b"true" if result is not None else False
-
def report_err(s):
global err
print("%s:%d: %s" % (fileinput.filename(), fileinput.filelineno(), s))
@@ -19,11 +14,10 @@ for line in fileinput.input(openhook=fileinput.hook_encoded("utf-8")):
if line.find('\t') != -1 and fileinput.filename().find("Makefile") == -1:
report_err("tab character")
- if not autocrlf and line.find('\r') != -1:
+ if line.find('\r') != -1:
report_err("CR character")
- line_len = len(line)-2 if autocrlf else len(line)-1
- if line_len > cols:
+ if len(line)-1 > cols:
report_err("line longer than %d chars" % cols)