comparison src/ex_cmds.h @ 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 00ffed9bbb65
children 81705f4d9e03
comparison
equal deleted inserted replaced
17177:b58feb1a84f0 17178:40c4cb095d53
1835 int force_ff; /* ++ff= argument (first char of argument) */ 1835 int force_ff; /* ++ff= argument (first char of argument) */
1836 int force_enc; /* ++enc= argument (index in cmd[]) */ 1836 int force_enc; /* ++enc= argument (index in cmd[]) */
1837 int bad_char; /* BAD_KEEP, BAD_DROP or replacement byte */ 1837 int bad_char; /* BAD_KEEP, BAD_DROP or replacement byte */
1838 int useridx; /* user command index */ 1838 int useridx; /* user command index */
1839 char *errmsg; /* returned error message */ 1839 char *errmsg; /* returned error message */
1840 char_u *(*getline)(int, void *, int); 1840 char_u *(*getline)(int, void *, int, int);
1841 void *cookie; /* argument for getline() */ 1841 void *cookie; /* argument for getline() */
1842 #ifdef FEAT_EVAL 1842 #ifdef FEAT_EVAL
1843 struct condstack *cstack; /* condition stack for ":if" etc. */ 1843 struct condstack *cstack; /* condition stack for ":if" etc. */
1844 #endif 1844 #endif
1845 long verbose_save; // saved value of p_verbose 1845 long verbose_save; // saved value of p_verbose