1
0
forked from aniani/vim

patch 8.2.0514: several global functions are used in only one file

Problem:    Several global functions are used in only one file.
Solution:   Make the functions static. (Yegappan Lakshmanan, closes #5884)
This commit is contained in:
Bram Moolenaar
2020-04-05 18:56:05 +02:00
parent 5d905c2b96
commit bdff012f44
10 changed files with 13 additions and 12 deletions

View File

@@ -2435,7 +2435,7 @@ find_var_in_ht(
/*
* Get the script-local hashtab. NULL if not in a script context.
*/
hashtab_T *
static hashtab_T *
get_script_local_ht(void)
{
scid_T sid = current_sctx.sc_sid;