eval: ll_range,ll_empty2 members are bool

This commit is contained in:
Jan Edmund Lazo
2021-02-06 17:40:40 -05:00
parent bea99729dd
commit f9c0af0180
2 changed files with 10 additions and 11 deletions

View File

@@ -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.