From ca70c07b72c24aae3d141e67d08f50361f051af5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 30 May 2020 20:30:46 +0200 Subject: patch 8.2.0853: ml_delete() often called with FALSE argument Problem: ml_delete() often called with FALSE argument. Solution: Use ml_delete_flags(x, ML_DEL_MESSAGE) when argument is TRUE. --- src/if_tcl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/if_tcl.c') 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; -- cgit v1.2.1