comparison src/evalfunc.c @ 17178:40c4cb095d53 v8.1.1588

patch 8.1.1588: in :let-heredoc line continuation is recognized commit https://github.com/vim/vim/commit/e96a2498f9a2d3e93ac07431f6d4afd77f30afdf Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 25 04:12:16 2019 +0200 patch 8.1.1588: in :let-heredoc line continuation is recognized Problem: In :let-heredoc line continuation is recognized. Solution: Do not consume line continuation. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/4580)
author Bram Moolenaar <Bram@vim.org>
date Tue, 25 Jun 2019 04:15:08 +0200
parents cee12488e4bc
children 210c4c5f783d
comparison
equal deleted inserted replaced
17177:b58feb1a84f0 17178:40c4cb095d53
3232 3232
3233 static char_u * 3233 static char_u *
3234 get_list_line( 3234 get_list_line(
3235 int c UNUSED, 3235 int c UNUSED,
3236 void *cookie, 3236 void *cookie,
3237 int indent UNUSED) 3237 int indent UNUSED,
3238 int do_concat UNUSED)
3238 { 3239 {
3239 listitem_T **p = (listitem_T **)cookie; 3240 listitem_T **p = (listitem_T **)cookie;
3240 listitem_T *item = *p; 3241 listitem_T *item = *p;
3241 char_u buf[NUMBUFLEN]; 3242 char_u buf[NUMBUFLEN];
3242 char_u *s; 3243 char_u *s;