summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-28 20:07:27 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-28 20:07:27 +0200
commitae616494d77e9930da703d65d12ac0abf6dc425f (patch)
tree37e2efd1d06148df39dd02f64c5d7136d0b1eba9 /src/ex_docmd.c
parent0aac67a4314d72a29d3fbee91b6f0ba89e950462 (diff)
patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exitv8.2.1308
Problem: Vim9: accidentally using "x" causes Vim to exit. Solution: Disallow using ":x" or "xit" in Vim9 script. (closes #6399)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 987e92dea9..fe654104da 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -5686,6 +5686,8 @@ ex_stop(exarg_T *eap)
static void
ex_exit(exarg_T *eap)
{
+ if (not_in_vim9(eap) == FAIL)
+ return;
#ifdef FEAT_CMDWIN
if (cmdwin_type != 0)
{