diff src/evalvars.c @ 22531:2df99e237965 v8.2.1814

patch 8.2.1814: missing change to remove "static" Commit: https://github.com/vim/vim/commit/922acbda3d4e250c8683db223f444d0ec8c6fd03 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 8 21:30:40 2020 +0200 patch 8.2.1814: missing change to remove "static" Problem: Missing change to remove "static". Solution: Add the change.
author Bram Moolenaar <Bram@vim.org>
date Thu, 08 Oct 2020 21:45:03 +0200
parents 5e95de50ddd2
children 86a115a80262
line wrap: on
line diff
--- a/src/evalvars.c
+++ b/src/evalvars.c
@@ -2653,7 +2653,7 @@ find_var_in_ht(
 /*
  * Get the script-local hashtab.  NULL if not in a script context.
  */
-    static hashtab_T *
+    hashtab_T *
 get_script_local_ht(void)
 {
     scid_T sid = current_sctx.sc_sid;