Patch 8.2.1494
Problem: Missing change to calling eval_getline().
Solution: Change last argument.
Files: src/eval.c
*** ../vim-8.2.1493/src/eval.c 2020-08-18 22:31:41.664654206 +0200
--- src/eval.c 2020-08-20 14:45:27.532095282 +0200
***************
*** 1966,1972 ****
char_u *line;
if (evalarg->eval_cookie != NULL)
! line = evalarg->eval_getline(0, evalarg->eval_cookie, 0, TRUE);
else
line = next_line_from_context(evalarg->eval_cctx, TRUE);
++evalarg->eval_break_count;
--- 1966,1973 ----
char_u *line;
if (evalarg->eval_cookie != NULL)
! 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;
*** ../vim-8.2.1493/src/version.c 2020-08-20 15:41:51.632896184 +0200
--- src/version.c 2020-08-20 15:51:52.697477960 +0200
***************
*** 756,757 ****
--- 756,759 ----
{ /* Add new patch number below this line */
+ /**/
+ 1494,
/**/
--
hundred-and-one symptoms of being an internet addict:
247. You use www.switchboard.com instead of dialing 411 and 555-12-12
for directory assistance.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/202008201352.07KDqrjm207391%40masaka.moolenaar.net.