summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2023-08-27 19:28:15 +0200
committerChristian Brabandt <cb@256bit.org>2023-08-27 19:28:15 +0200
commit90c27b28032ea2b42718f8933f877a8bca2821ef (patch)
treeb9c24ffb2161f5d53009e5ec9e64ec1c6faa42b4 /src/ex_docmd.c
parent639751d218ef423efef8e9aa0fa9abaff7122186 (diff)
patch 9.0.1806: Vim9: bogus error on exportv9.0.1806
Problem: Vim9: bogus error on export Solution: Don't error out when the export command is not executed closes: #12912 closes: #12930 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: LemonBoy <thatlemon@gmail.com>
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 8fda332688..32d52ab212 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -2586,8 +2586,8 @@ do_one_cmd(
#ifdef FEAT_EVAL
// A command will reset "is_export" when exporting an item. If it is still
- // set something went wrong.
- if (is_export)
+ // set something went wrong or the command was never executed.
+ if (!ea.skip && is_export)
{
if (errormsg == NULL)
errormsg = _(e_export_with_invalid_argument);