changeset 21889:e7e485a60caf v8.2.1494

patch 8.2.1494: missing change to calling eval_getline() Commit: https://github.com/vim/vim/commit/825b54415f71beadd125b5703bed08332c053168 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 20 15:52:21 2020 +0200 patch 8.2.1494: missing change to calling eval_getline() Problem: Missing change to calling eval_getline(). Solution: Change last argument.
author Bram Moolenaar <Bram@vim.org>
date Thu, 20 Aug 2020 16:00:05 +0200
parents 737fc578b99f
children 4bf8b32ddbe3
files src/eval.c src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c
+++ b/src/eval.c
@@ -1966,7 +1966,8 @@ eval_next_line(evalarg_T *evalarg)
     char_u	*line;
 
     if (evalarg->eval_cookie != NULL)
-	line = evalarg->eval_getline(0, evalarg->eval_cookie, 0, TRUE);
+	line = evalarg->eval_getline(0, evalarg->eval_cookie, 0,
+							   GETLINE_CONCAT_ALL);
     else
 	line = next_line_from_context(evalarg->eval_cctx, TRUE);
     ++evalarg->eval_break_count;
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1494,
+/**/
     1493,
 /**/
     1492,