diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-07-30 12:39:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 12:39:19 +0800 |
commit | 619d005ac30cbbd38c1d9ffbe6a8728ec7732519 (patch) | |
tree | 6690b671a3bd3f9e5759df1f8bc718a7cf6f4bd2 /src/nvim/eval.h | |
parent | cd4638366759bc984d4cb7207a56e5bc112f4179 (diff) | |
parent | 0af056ebce189deedb58f7048108977fa5d81713 (diff) | |
download | rneovim-619d005ac30cbbd38c1d9ffbe6a8728ec7732519.tar.gz rneovim-619d005ac30cbbd38c1d9ffbe6a8728ec7732519.tar.bz2 rneovim-619d005ac30cbbd38c1d9ffbe6a8728ec7732519.zip |
Merge pull request #29912 from zeertzjq/vim-9.0.0327
vim-patch:9.0.{partial:0327,0330,0331,0333}
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r-- | src/nvim/eval.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h index d83af70ef7..004fc82222 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -237,13 +237,6 @@ typedef enum { EXPR_ISNOT, ///< isnot } exprtype_T; -/// Type for dict_list function -typedef enum { - kDictListKeys, ///< List dictionary keys. - kDictListValues, ///< List dictionary values. - kDictListItems, ///< List dictionary contents: [keys, values]. -} DictListType; - // Used for checking if local variables or arguments used in a lambda. extern bool *eval_lavars_used; |