Mercurial > vim
changeset 23968:da1c89e61b04 v8.2.2526
patch 8.2.2526: build failure
Commit: https://github.com/vim/vim/commit/527ed38cfacc5abf32ef3e63f98966d011cd95de
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 17 15:05:45 2021 +0100
patch 8.2.2526: build failure
Problem: Build failure.
Solution: Change lookup_scriptvar() arguments.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 17 Feb 2021 15:15:03 +0100 |
parents | 1e37fd94d6e9 |
children | 09ff1883884f |
files | src/evalvars.c src/proto/evalvars.pro src/version.c |
diffstat | 3 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/evalvars.c +++ b/src/evalvars.c @@ -2776,7 +2776,6 @@ get_script_local_ht(void) lookup_scriptvar( char_u *name, size_t len, - void *lvar UNUSED, cctx_T *dummy UNUSED) { hashtab_T *ht = get_script_local_ht();
--- a/src/proto/evalvars.pro +++ b/src/proto/evalvars.pro @@ -60,7 +60,7 @@ void check_vars(char_u *name, int len); dictitem_T *find_var(char_u *name, hashtab_T **htp, int no_autoload); dictitem_T *find_var_in_ht(hashtab_T *ht, int htname, char_u *varname, int no_autoload); hashtab_T *get_script_local_ht(void); -int lookup_scriptvar(char_u *name, size_t len, void *lvar, cctx_T *dummy); +int lookup_scriptvar(char_u *name, size_t len, cctx_T *dummy); hashtab_T *find_var_ht(char_u *name, char_u **varname); char_u *get_var_value(char_u *name); void new_script_vars(scid_T id);