summaryrefslogtreecommitdiff
path: root/src/if_tcl.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-30 20:30:46 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-30 20:30:46 +0200
commitca70c07b72c24aae3d141e67d08f50361f051af5 (patch)
tree98b26c267d6924c2a7464e08dc9fcacdd94d771f /src/if_tcl.c
parentd6cd5ffade84a1054fed23079133af3b837033bf (diff)
downloadvim-git-ca70c07b72c24aae3d141e67d08f50361f051af5.tar.gz
patch 8.2.0853: ml_delete() often called with FALSE argumentv8.2.0853
Problem: ml_delete() often called with FALSE argument. Solution: Use ml_delete_flags(x, ML_DEL_MESSAGE) when argument is TRUE.
Diffstat (limited to 'src/if_tcl.c')
-rw-r--r--src/if_tcl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_tcl.c b/src/if_tcl.c
index 17e20ee38..c274b2675 100644
--- a/src/if_tcl.c
+++ b/src/if_tcl.c
@@ -735,7 +735,7 @@ bufselfcmd(
i = n;
do
{
- if (ml_delete((linenr_T)i, FALSE) != OK)
+ if (ml_delete((linenr_T)i) != OK)
goto setListError;
++n;
} while (n <= val2);
@@ -783,7 +783,7 @@ bufselfcmd(
}
for (i = 0; i < n; i++)
{
- ml_delete((linenr_T)val1, FALSE);
+ ml_delete((linenr_T)val1);
err = vimerror(interp);
if (err != TCL_OK)
break;