aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.h
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-05-03 11:02:04 +0200
committerGitHub <noreply@github.com>2022-05-03 11:02:04 +0200
commit8ea84eee570fd1ec560fe149e611d10034d9a223 (patch)
tree807bb0bcb4a551285e7c1f739b1b201d49d58261 /src/nvim/eval.h
parent46734cf7c1e5abe8e452354db6914364bfe89f0d (diff)
parentb9bdd0f61e5e7365c07aadbc3f796556b6d85fdf (diff)
downloadrneovim-8ea84eee570fd1ec560fe149e611d10034d9a223.tar.gz
rneovim-8ea84eee570fd1ec560fe149e611d10034d9a223.tar.bz2
rneovim-8ea84eee570fd1ec560fe149e611d10034d9a223.zip
Merge pull request #18345 from dundargoc/refactor/remove-char_u
refactor: replace char_u variables and functions with char
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 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;