Skip to content

Commit 825b544

Browse files
committed
patch 8.2.1494: missing change to calling eval_getline()
Problem: Missing change to calling eval_getline(). Solution: Change last argument.
1 parent fc2a47f commit 825b544

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/eval.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1966,7 +1966,8 @@ eval_next_line(evalarg_T *evalarg)
19661966
char_u *line;
19671967

19681968
if (evalarg->eval_cookie != NULL)
1969-
line = evalarg->eval_getline(0, evalarg->eval_cookie, 0, TRUE);
1969+
line = evalarg->eval_getline(0, evalarg->eval_cookie, 0,
1970+
GETLINE_CONCAT_ALL);
19701971
else
19711972
line = next_line_from_context(evalarg->eval_cctx, TRUE);
19721973
++evalarg->eval_break_count;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,8 @@ static char *(features[]) =
754754

755755
static int included_patches[] =
756756
{ /* Add new patch number below this line */
757+
/**/
758+
1494,
757759
/**/
758760
1493,
759761
/**/

0 commit comments

Comments
 (0)