forked from aniani/vim
patch 8.2.4841: empty string considered an error for expand()
Problem: Empty string considered an error for expand() when 'verbose' is
set. (Christian Brabandt)
Solution: Do not give an error for an empty result. (closes #10307)
This commit is contained in:
@@ -63,7 +63,7 @@ void ex_normal(exarg_T *eap);
|
||||
void exec_normal_cmd(char_u *cmd, int remap, int silent);
|
||||
void exec_normal(int was_typed, int use_vpeekc, int may_use_terminal_loop);
|
||||
int find_cmdline_var(char_u *src, int *usedlen);
|
||||
char_u *eval_vars(char_u *src, char_u *srcstart, int *usedlen, linenr_T *lnump, char **errormsg, int *escaped);
|
||||
char_u *eval_vars(char_u *src, char_u *srcstart, int *usedlen, linenr_T *lnump, char **errormsg, int *escaped, int empty_is_error);
|
||||
char_u *expand_sfile(char_u *arg);
|
||||
void dialog_msg(char_u *buff, char *format, char_u *fname);
|
||||
void set_no_hlsearch(int flag);
|
||||
|
||||
Reference in New Issue
Block a user