comparison src/proto/ex_cmds2.pro @ 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 1dcbaa780b8e
children 984eef966002
comparison
equal deleted inserted replaced
17177:b58feb1a84f0 17178:40c4cb095d53
79 int do_source(char_u *fname, int check_other, int is_vimrc); 79 int do_source(char_u *fname, int check_other, int is_vimrc);
80 void ex_scriptnames(exarg_T *eap); 80 void ex_scriptnames(exarg_T *eap);
81 void scriptnames_slash_adjust(void); 81 void scriptnames_slash_adjust(void);
82 char_u *get_scriptname(scid_T id); 82 char_u *get_scriptname(scid_T id);
83 void free_scriptnames(void); 83 void free_scriptnames(void);
84 char_u *getsourceline(int c, void *cookie, int indent); 84 char_u *getsourceline(int c, void *cookie, int indent, int do_concat);
85 void script_line_start(void); 85 void script_line_start(void);
86 void script_line_exec(void); 86 void script_line_exec(void);
87 void script_line_end(void); 87 void script_line_end(void);
88 void ex_scriptencoding(exarg_T *eap); 88 void ex_scriptencoding(exarg_T *eap);
89 void ex_scriptversion(exarg_T *eap); 89 void ex_scriptversion(exarg_T *eap);
90 void ex_finish(exarg_T *eap); 90 void ex_finish(exarg_T *eap);
91 void do_finish(exarg_T *eap, int reanimate); 91 void do_finish(exarg_T *eap, int reanimate);
92 int source_finished(char_u *(*fgetline)(int, void *, int), void *cookie); 92 int source_finished(char_u *(*fgetline)(int, void *, int, int), void *cookie);
93 void ex_checktime(exarg_T *eap); 93 void ex_checktime(exarg_T *eap);
94 char_u *get_mess_lang(void); 94 char_u *get_mess_lang(void);
95 void set_lang_var(void); 95 void set_lang_var(void);
96 void ex_language(exarg_T *eap); 96 void ex_language(exarg_T *eap);
97 void free_locales(void); 97 void free_locales(void);