summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GrepNested.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/GrepNested.hs b/GrepNested.hs
index df52581..74033bd 100644
--- a/GrepNested.hs
+++ b/GrepNested.hs
@@ -74,6 +74,7 @@ grepNested p !lin !col s = case cmtToken p s of
74 (EOL,tlen,cs) -> grepNested p (lin+1) 1 cs 74 (EOL,tlen,cs) -> grepNested p (lin+1) 1 cs
75 (NullInput,tlen,_) -> [] 75 (NullInput,tlen,_) -> []
76 (IgnoredChar clen,_,cs) -> grepNested p lin (col+clen) cs 76 (IgnoredChar clen,_,cs) -> grepNested p lin (col+clen) cs
77 (CloseNested,tlen,cs) -> grepNested p lin (col+tlen) cs
77 78
78 79
79findCloser :: Num lin => CommentProtocol t 80findCloser :: Num lin => CommentProtocol t