forked from aniani/vim
patch 8.2.3489: ml_get error after search with range
Problem: ml_get error after search with range. Solution: Limit the line number to the buffer line count.
This commit is contained in:
@@ -4229,8 +4229,10 @@ get_address(
|
||||
|
||||
// When '/' or '?' follows another address, start from
|
||||
// there.
|
||||
if (lnum != MAXLNUM)
|
||||
curwin->w_cursor.lnum = lnum;
|
||||
if (lnum > 0 && lnum != MAXLNUM)
|
||||
curwin->w_cursor.lnum =
|
||||
lnum > curbuf->b_ml.ml_line_count
|
||||
? curbuf->b_ml.ml_line_count : lnum;
|
||||
|
||||
// Start a forward search at the end of the line (unless
|
||||
// before the first line).
|
||||
|
Reference in New Issue
Block a user