aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/options.c
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2023-07-13 15:53:07 +0100
committerLewis Russell <lewis6991@gmail.com>2023-08-31 15:08:52 +0100
commit6a449a892bdc25f4984b1cd4dcbe4e7157142a46 (patch)
tree2a255c245457ed7b96699ac64d57c103ae070b0a /src/nvim/api/options.c
parent3a45a0db4d5a3981f4fbd575d405a9c6e382b930 (diff)
downloadrneovim-6a449a892bdc25f4984b1cd4dcbe4e7157142a46.tar.gz
rneovim-6a449a892bdc25f4984b1cd4dcbe4e7157142a46.tar.bz2
rneovim-6a449a892bdc25f4984b1cd4dcbe4e7157142a46.zip
refactor(option): remove OPT_CLEAR
Diffstat (limited to 'src/nvim/api/options.c')
-rw-r--r--src/nvim/api/options.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/api/options.c b/src/nvim/api/options.c
index e33cb72e8d..eb80683365 100644
--- a/src/nvim/api/options.c
+++ b/src/nvim/api/options.c
@@ -465,9 +465,6 @@ OptVal get_option_value_for(const char *const name, uint32_t *flagsp, int scope,
/// @param[in] name Option name.
/// @param[in] value Option value.
/// @param[in] opt_flags Flags: OPT_LOCAL, OPT_GLOBAL, or 0 (both).
-/// If OPT_CLEAR is set, the value of the option
-/// is cleared (the exact semantics of this depend
-/// on the option).
/// @param[in] opt_type Option type. See SREQ_* in option_defs.h.
/// @param[in] from Target buffer/window.
/// @param[out] err Error message, if any.