diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-02-06 22:11:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 22:11:02 -0500 |
commit | b894fbcbe8a0a518753bd47cdc2bb621bf1389d8 (patch) | |
tree | d9ecd901643a31baf33311f959e08595da012a6e /src/nvim/eval.h | |
parent | 336eb70822970cea6797251043158ee6bd76bc69 (diff) | |
parent | f9c0af0180411429ad315a0d2974c477ac740f70 (diff) | |
download | rneovim-b894fbcbe8a0a518753bd47cdc2bb621bf1389d8.tar.gz rneovim-b894fbcbe8a0a518753bd47cdc2bb621bf1389d8.tar.bz2 rneovim-b894fbcbe8a0a518753bd47cdc2bb621bf1389d8.zip |
Merge pull request #13892 from janlazo/vim-8.1.2285
vim-patch:8.1.2285
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r-- | src/nvim/eval.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h index 06b7f9e21d..c1891758ea 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -56,10 +56,10 @@ typedef struct lval_S { ///< isn't NULL it's the Dict to which to add the item. listitem_T *ll_li; ///< The list item or NULL. list_T *ll_list; ///< The list or NULL. - int ll_range; ///< TRUE when a [i:j] range was used. + bool ll_range; ///< true when a [i:j] range was used. + bool ll_empty2; ///< Second index is empty: [i:]. long ll_n1; ///< First index for list. long ll_n2; ///< Second index for list range. - int ll_empty2; ///< Second index is empty: [i:]. dict_T *ll_dict; ///< The Dictionary or NULL. dictitem_T *ll_di; ///< The dictitem or NULL. char_u *ll_newkey; ///< New key for Dict in allocated memory or NULL. |