aboutsummaryrefslogtreecommitdiff
path: root/lex.go
diff options
context:
space:
mode:
Diffstat (limited to 'lex.go')
-rw-r--r--lex.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/lex.go b/lex.go
index 621ed01..d4a4e30 100644
--- a/lex.go
+++ b/lex.go
@@ -25,7 +25,6 @@ func lex(src *os.File, tokens chan<- token, errs chan<- error) {
tok, err := readToken(br, &line)
if err != nil {
if err == io.EOF {
- wg.Done()
return
}