diff options
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 83e9c6370d..53f19b8736 100644 --- a/src/nvim/eval.h +++ b/src/nvim/eval.h @@ -62,7 +62,7 @@ typedef struct lval_S { long ll_n2; ///< Second index for list range. 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. + char *ll_newkey; ///< New key for Dict in allocated memory or NULL. blob_T *ll_blob; ///< The Blob or NULL. } lval_T; @@ -266,7 +266,7 @@ typedef enum { kDictListItems, ///< List dictionary contents: [keys, values]. } DictListType; -typedef int (*ex_unletlock_callback)(lval_T *, char_u *, exarg_T *, int); +typedef int (*ex_unletlock_callback)(lval_T *, char *, exarg_T *, int); // Used for checking if local variables or arguments used in a lambda. extern bool *eval_lavars_used; |