aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-02-17 14:47:40 +0100
committerJustin M. Keyes <justinkz@gmail.com>2019-02-17 14:47:40 +0100
commit6bd6927656500c50787b16de1fadf1bc46b7aefa (patch)
tree39b7291f434431e40e0a2d526de3026fc166226a /src/nvim/option.c
parentdc9dd8d664f2ffec3d199f96e4605cb0729497ec (diff)
parent7e9b99d55be68938689b9f593e200054533c3783 (diff)
downloadrneovim-6bd6927656500c50787b16de1fadf1bc46b7aefa.tar.gz
rneovim-6bd6927656500c50787b16de1fadf1bc46b7aefa.tar.bz2
rneovim-6bd6927656500c50787b16de1fadf1bc46b7aefa.zip
Merge #5027 'TUI: detect background color'
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index fc1fab834e..b85ec6dbcc 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -883,7 +883,7 @@ set_options_default (
/// @param name The name of the option
/// @param val The value of the option
/// @param allocated If true, do not copy default as it was already allocated.
-static void set_string_default(const char *name, char *val, bool allocated)
+void set_string_default(const char *name, char *val, bool allocated)
FUNC_ATTR_NONNULL_ALL
{
int opt_idx = findoption(name);