summaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorPavel Mayorov <pmayorov@cloudlinux.com>2023-02-20 14:35:20 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-20 14:35:20 +0000
commite1121b139480f53d1b06f84f3e4574048108fa0b (patch)
tree7c95e52cbc3b8972a7b5677fbfd53c630c6538ad /src/buffer.c
parentaf93691b53f38784efce0b93fe7644c44a7e382e (diff)
patch 9.0.1331: illegal memory access when using :ball in Visual modev9.0.1331
Problem: Illegal memory access when using :ball in Visual mode. Solution: Stop Visual mode when using :ball. (Pavel Mayorov, closes #11923)
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index cb7bdf445d..ff35729fb9 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5402,6 +5402,10 @@ ex_buffer_all(exarg_T *eap)
else
all = TRUE;
+ // Stop Visual mode, the cursor and "VIsual" may very well be invalid after
+ // switching to another buffer.
+ reset_VIsual_and_resel();
+
setpcmark();
#ifdef FEAT_GUI