diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-16 01:09:47 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-01-17 13:05:51 +0100 |
commit | 7e9b99d55be68938689b9f593e200054533c3783 (patch) | |
tree | 64367007412114abea467c71640fec0323bcd38d /src/nvim/option.c | |
parent | 279043d62526674118e4ddb531f8cf7195060928 (diff) | |
parent | 5372d9a705b849459bcb5ed52823fa422d0745de (diff) | |
download | rneovim-7e9b99d55be68938689b9f593e200054533c3783.tar.gz rneovim-7e9b99d55be68938689b9f593e200054533c3783.tar.bz2 rneovim-7e9b99d55be68938689b9f593e200054533c3783.zip |
Merge #5027 'TUI: detect background color'
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 6b1c5c998f..b8f5957c09 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -881,7 +881,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); |