Skip to content
Snippets Groups Projects
Commit c8860a212770 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

errors: raise InputError when line range to followlines() is out of bounds

Differential Revision: https://phab.mercurial-scm.org/D9333
parent ec73a6a75985
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@
if hunkinrange((b1, (b2 - b1)), rangeb):
filteredblocks.append(block)
if lba is None or uba is None or uba < lba:
raise error.Abort(_(b'line range exceeds file size'))
raise error.InputError(_(b'line range exceeds file size'))
return filteredblocks, (lba, uba)
......
......@@ -960,7 +960,7 @@
[255]
$ hg log -r 'followlines(baz, 2:40)'
abort: line range exceeds file size
[255]
[10]
$ hg log -r 'followlines(baz, 2:4, startrev=20, descend=[1])'
hg: parse error at 43: not a prefix: [
(followlines(baz, 2:4, startrev=20, descend=[1])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment