mirror of https://github.com/golang/go.git
codereview: allow spaces in y.tab.[ch]
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5620053
This commit is contained in:
parent
0f78ee574b
commit
870c9d1c09
|
|
@ -925,7 +925,7 @@ def CheckGofmt(ui, repo, files, just_warn):
|
||||||
|
|
||||||
# Check that *.[chys] files indent using tabs.
|
# Check that *.[chys] files indent using tabs.
|
||||||
def CheckTabfmt(ui, repo, files, just_warn):
|
def CheckTabfmt(ui, repo, files, just_warn):
|
||||||
files = [f for f in files if f.startswith('src/') and re.search(r"\.[chys]$", f)]
|
files = [f for f in files if f.startswith('src/') and re.search(r"\.[chys]$", f) and not re.search(r"\.tab\.[ch]$", f)]
|
||||||
if not files:
|
if not files:
|
||||||
return
|
return
|
||||||
cwd = os.getcwd()
|
cwd = os.getcwd()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue