diff options
Diffstat (limited to 'src/tparse/tree-preproc.go')
-rw-r--r-- | src/tparse/tree-preproc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tparse/tree-preproc.go b/src/tparse/tree-preproc.go index a3e65f5..8fec30c 100644 --- a/src/tparse/tree-preproc.go +++ b/src/tparse/tree-preproc.go @@ -25,7 +25,7 @@ func parsePreBlock (tokens *[]Token, tok, max int) (Node, int) { for ; tok < max; tok++ { t := (*tokens)[tok] - if t.Data == ":/" { + if t.Data == ":/" || t.Data == ":;" { break } |