summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-08 21:30:40 +0200
committerBram Moolenaar <Bram@vim.org>2020-10-08 21:30:40 +0200
commit922acbda3d4e250c8683db223f444d0ec8c6fd03 (patch)
treeb04939bdc827ed5d5f956b70943a1fcb9975a323
parent10c65860f83589e0ca2498393d3cfef1115b7fe8 (diff)
patch 8.2.1814: missing change to remove "static"v8.2.1814
Problem: Missing change to remove "static". Solution: Add the change.
-rw-r--r--src/evalvars.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/evalvars.c b/src/evalvars.c
index fdc6f454a5..f7ee58d531 100644
--- 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;
diff --git a/src/version.c b/src/version.c
index 7d62814d22..238113f67c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1814,
+/**/
1813,
/**/
1812,