mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
Merge pull request #19054 from zeertzjq/vim-8.2.5150
vim-patch:8.2.{5150,5151}: reading beyond the end of the line
This commit is contained in:
@@ -2826,10 +2826,13 @@ int parse_cmd_address(exarg_T *eap, char **errormsg, bool silent)
|
||||
curwin->w_cursor.lnum = eap->line2;
|
||||
|
||||
// Don't leave the cursor on an illegal line or column, but do
|
||||
// accept zero as address, so 0;/PATTERN/ works correctly.
|
||||
// accept zero as address, so 0;/PATTERN/ works correctly
|
||||
// (where zero usually means to use the first line).
|
||||
// Check the cursor position before returning.
|
||||
if (eap->line2 > 0) {
|
||||
check_cursor();
|
||||
} else {
|
||||
check_cursor_col();
|
||||
}
|
||||
need_check_cursor = true;
|
||||
}
|
||||
|
||||
@@ -697,8 +697,10 @@ int get_lisp_indent(void)
|
||||
&& lisp_match(that + 1)) {
|
||||
amount += 2;
|
||||
} else {
|
||||
that++;
|
||||
amount++;
|
||||
if (*that != NUL) {
|
||||
that++;
|
||||
amount++;
|
||||
}
|
||||
firsttry = amount;
|
||||
|
||||
while (ascii_iswhite(*that)) {
|
||||
|
||||
@@ -636,6 +636,14 @@ func Test_illegal_address2()
|
||||
call delete('Xtest.vim')
|
||||
endfunc
|
||||
|
||||
func Test_mark_from_line_zero()
|
||||
" this was reading past the end of the first (empty) line
|
||||
new
|
||||
norm oxxxx
|
||||
call assert_fails("0;'(", 'E20:')
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
func Test_cmdline_complete_wildoptions()
|
||||
help
|
||||
call feedkeys(":tag /\<c-a>\<c-b>\"\<cr>", 'tx')
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
" Tests for 'lispwords' settings being global-local
|
||||
" Tests for 'lispwords' settings being global-local.
|
||||
" And other lisp indent stuff.
|
||||
|
||||
set nocompatible viminfo+=nviminfo
|
||||
|
||||
@@ -85,4 +86,13 @@ func Test_lisp_indent()
|
||||
set nolisp
|
||||
endfunc
|
||||
|
||||
func Test_lisp_indent_works()
|
||||
" This was reading beyond the end of the line
|
||||
new
|
||||
exe "norm a\tü(\<CR>="
|
||||
set lisp
|
||||
norm ==
|
||||
bwipe!
|
||||
endfunc
|
||||
|
||||
" vim: shiftwidth=2 sts=2 expandtab
|
||||
|
||||
Reference in New Issue
Block a user