diff options
Diffstat (limited to 'src/nvim/eval.h')
-rw-r--r-- | src/nvim/eval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.h b/src/nvim/eval.h index 06b7f9e21d..a005d89cd0 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -57,9 +57,9 @@ typedef struct lval_S { 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:]. 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. |