aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/options.c
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2023-09-02 10:37:15 +0100
committerGitHub <noreply@github.com>2023-09-02 10:37:15 +0100
commitbb1df1221d567e3f682a177d55772f49801f5e80 (patch)
tree4aa19701b1ed5f1f6b2e1eab9cda3164d810a886 /src/nvim/api/options.c
parentf02bfb6a2a079fc223db9f941dc917aa06a45b09 (diff)
parent90fd0864c4794e711cb6c28c41ec05b4d0187954 (diff)
downloadrneovim-bb1df1221d567e3f682a177d55772f49801f5e80.tar.gz
rneovim-bb1df1221d567e3f682a177d55772f49801f5e80.tar.bz2
rneovim-bb1df1221d567e3f682a177d55772f49801f5e80.zip
Merge pull request #24310 from lewis6991/refactor/optionvalidate
refactor(option.c): misc
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.