aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.h
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-06 17:40:40 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-06 17:40:40 -0500
commitf9c0af0180411429ad315a0d2974c477ac740f70 (patch)
treed9ecd901643a31baf33311f959e08595da012a6e /src/nvim/eval.h
parentbea99729dd66a1d3c5351cbe6a7677df0619a33f (diff)
downloadrneovim-f9c0af0180411429ad315a0d2974c477ac740f70.tar.gz
rneovim-f9c0af0180411429ad315a0d2974c477ac740f70.tar.bz2
rneovim-f9c0af0180411429ad315a0d2974c477ac740f70.zip
eval: ll_range,ll_empty2 members are bool
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r--src/nvim/eval.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h
index a005d89cd0..c1891758ea 100644
--- a/src/nvim/eval.h
+++ b/src/nvim/eval.h
@@ -56,8 +56,8 @@ 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.
- int ll_empty2; ///< Second index is empty: [i:].
+ 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.
dict_T *ll_dict; ///< The Dictionary or NULL.