diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-09-23 07:14:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 07:14:10 -0700 |
commit | 34a40d3a50f71a4b5e06c36ed9f9110983984dbf (patch) | |
tree | 69f647ce5f5dba8f16cb2a55a2511b89df4db87e /src/nvim/context.c | |
parent | 47e6b2233feffc6e9d94f6086fb904eb5688fa25 (diff) | |
parent | 17027d64726864c7bbdba5bee004eb581ac4b54a (diff) | |
download | rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.gz rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.bz2 rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.zip |
Merge #30435 refactor: rename "Dictionary" => "Dict"
Diffstat (limited to 'src/nvim/context.c')
-rw-r--r-- | src/nvim/context.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/context.c b/src/nvim/context.c index 2e3634329a..461b10a9d5 100644 --- a/src/nvim/context.c +++ b/src/nvim/context.c @@ -265,17 +265,17 @@ static inline String array_to_string(Array array, Error *err) return sbuf; } -/// Converts Context to Dictionary representation. +/// Converts Context to Dict representation. /// /// @param[in] ctx Context to convert. /// -/// @return Dictionary representing "ctx". -Dictionary ctx_to_dict(Context *ctx, Arena *arena) +/// @return Dict representing "ctx". +Dict ctx_to_dict(Context *ctx, Arena *arena) FUNC_ATTR_NONNULL_ALL { assert(ctx != NULL); - Dictionary rv = arena_dict(arena, 5); + Dict rv = arena_dict(arena, 5); PUT_C(rv, "regs", ARRAY_OBJ(string_to_array(ctx->regs, false, arena))); PUT_C(rv, "jumps", ARRAY_OBJ(string_to_array(ctx->jumps, false, arena))); @@ -286,14 +286,14 @@ Dictionary ctx_to_dict(Context *ctx, Arena *arena) return rv; } -/// Converts Dictionary representation of Context back to Context object. +/// Converts Dict representation of Context back to Context object. /// -/// @param[in] dict Context Dictionary representation. +/// @param[in] dict Context Dict representation. /// @param[out] ctx Context object to store conversion result into. /// @param[out] err Error object. /// /// @return types of included context items. -int ctx_from_dict(Dictionary dict, Context *ctx, Error *err) +int ctx_from_dict(Dict dict, Context *ctx, Error *err) FUNC_ATTR_NONNULL_ALL { assert(ctx != NULL); |