diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-06-23 07:37:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 07:37:54 +0800 |
commit | 1b75094e3e1c2ef002f2a089d17553f84e06e06f (patch) | |
tree | e93ed3e43c866b2c6a83c4bb7d76fc843d9c3390 /src/nvim/indent.c | |
parent | 801faeaae263b545afc18b1cb6f2ad14dceb4c23 (diff) | |
parent | a4d7394bc8acba0d67f0e2ad7b5645007e37417a (diff) | |
download | rneovim-1b75094e3e1c2ef002f2a089d17553f84e06e06f.tar.gz rneovim-1b75094e3e1c2ef002f2a089d17553f84e06e06f.tar.bz2 rneovim-1b75094e3e1c2ef002f2a089d17553f84e06e06f.zip |
Merge pull request #19054 from zeertzjq/vim-8.2.5150
vim-patch:8.2.{5150,5151}: reading beyond the end of the line
Diffstat (limited to 'src/nvim/indent.c')
-rw-r--r-- | src/nvim/indent.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/indent.c b/src/nvim/indent.c index 010d2fe869..d71b3adb5c 100644 --- a/src/nvim/indent.c +++ b/src/nvim/indent.c @@ -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)) { |