diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-01-30 19:06:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-30 19:06:32 +0100 |
commit | 27b81af19c498892f4b0444ad29b7be842f8e7b8 (patch) | |
tree | c17adda91d2b3896c0946c6f9ca7546dece5ab4a /src/nvim/eval/funcs.c | |
parent | 979b7b0c4950b19cf180758d98fec170834eeb66 (diff) | |
download | rneovim-27b81af19c498892f4b0444ad29b7be842f8e7b8.tar.gz rneovim-27b81af19c498892f4b0444ad29b7be842f8e7b8.tar.bz2 rneovim-27b81af19c498892f4b0444ad29b7be842f8e7b8.zip |
refactor!: remove has("debug") (#22060)
This value can not be relied on as it doesn't work for
multi-configuration generators. I don't think this undocumented option
is used much, if at all, so I think we should remove it.
Diffstat (limited to 'src/nvim/eval/funcs.c')
-rw-r--r-- | src/nvim/eval/funcs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index 938fef9a52..48f3cd4293 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -3064,9 +3064,6 @@ static void f_has(typval_T *argvars, typval_T *rettv, EvalFuncData fptr) "conceal", "cursorbind", "cursorshape", -#ifdef DEBUG - "debug", -#endif "dialog_con", "diff", "digraphs", |