mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
fixes #4751
This commit is contained in:
@@ -11,7 +11,7 @@ import
|
||||
os, strutils, parseopt, pegs, re, terminal
|
||||
|
||||
const
|
||||
Version = "1.0"
|
||||
Version = "1.1"
|
||||
Usage = "nimgrep - Nim Grep Utility Version " & Version & """
|
||||
|
||||
(c) 2012 Andreas Rumpf
|
||||
@@ -161,7 +161,7 @@ proc processFile(filename: string) =
|
||||
t = findBounds(buffer, pegp, matches, i)
|
||||
else:
|
||||
t = findBounds(buffer, rep, matches, i)
|
||||
if t.first <= 0: break
|
||||
if t.first < 0: break
|
||||
inc(line, countLines(buffer, i, t.first-1))
|
||||
|
||||
var wholeMatch = buffer.substr(t.first, t.last)
|
||||
|
||||
Reference in New Issue
Block a user