From b171fb179053fa631fec74911b5fb9374cb6a8a1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 24 Jun 2020 20:34:03 +0200 Subject: patch 8.2.1049: Vim9: leaking memory when using continuation line Problem: Vim9: leaking memory when using continuation line. Solution: Keep a pointer to the continuation line in evalarg_T. Centralize checking for a next command. --- src/fold.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fold.c') diff --git a/src/fold.c b/src/fold.c index d91203c75c..043037fa64 100644 --- a/src/fold.c +++ b/src/fold.c @@ -1928,7 +1928,7 @@ get_foldtext( curbuf = wp->w_buffer; ++emsg_silent; // handle exceptions, but don't display errors - text = eval_to_string_safe(wp->w_p_fdt, NULL, + text = eval_to_string_safe(wp->w_p_fdt, was_set_insecurely((char_u *)"foldtext", OPT_LOCAL)); --emsg_silent; -- cgit v1.2.3