comparison src/proto/eval.pro @ 15543:dd725a8ab112 v8.1.0779

patch 8.1.0779: argument for message functions is inconsistent commit https://github.com/vim/vim/commit/32526b3c1846025f0e655f41efd4e5428da16b6c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 19 17:43:09 2019 +0100 patch 8.1.0779: argument for message functions is inconsistent Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *".
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Jan 2019 17:45:07 +0100
parents dada0b389d4f
children 5b6c3c7feba8
comparison
equal deleted inserted replaced
15542:5baedae7ca7a 15543:dd725a8ab112
23 varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv); 23 varnumber_T call_func_retnr(char_u *func, int argc, typval_T *argv);
24 void *call_func_retstr(char_u *func, int argc, typval_T *argv); 24 void *call_func_retstr(char_u *func, int argc, typval_T *argv);
25 void *call_func_retlist(char_u *func, int argc, typval_T *argv); 25 void *call_func_retlist(char_u *func, int argc, typval_T *argv);
26 int eval_foldexpr(char_u *arg, int *cp); 26 int eval_foldexpr(char_u *arg, int *cp);
27 void ex_let(exarg_T *eap); 27 void ex_let(exarg_T *eap);
28 void list_hashtable_vars(hashtab_T *ht, char_u *prefix, int empty, int *first); 28 void list_hashtable_vars(hashtab_T *ht, char *prefix, int empty, int *first);
29 char_u *get_lval(char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int flags, int fne_flags); 29 char_u *get_lval(char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int flags, int fne_flags);
30 void clear_lval(lval_T *lp); 30 void clear_lval(lval_T *lp);
31 void *eval_for_line(char_u *arg, int *errp, char_u **nextcmdp, int skip); 31 void *eval_for_line(char_u *arg, int *errp, char_u **nextcmdp, int skip);
32 int next_for_item(void *fi_void, char_u *arg); 32 int next_for_item(void *fi_void, char_u *arg);
33 void free_for_info(void *fi_void); 33 void free_for_info(void *fi_void);