diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-02-09 12:40:48 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2024-02-09 18:24:21 +0100 |
commit | e9510211f0b957606685344be97350c29e3ea638 (patch) | |
tree | 52b3ccf23720512057d13bb91c5bbdd7aeed1a0c /src/nvim/api/vim.c | |
parent | e0e5b7f0ba1b0440bdc2b557e2b2cfae24706cbd (diff) | |
download | rneovim-e9510211f0b957606685344be97350c29e3ea638.tar.gz rneovim-e9510211f0b957606685344be97350c29e3ea638.tar.bz2 rneovim-e9510211f0b957606685344be97350c29e3ea638.zip |
refactor(api): use arena for nvim_list_uis()
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 6b46f579e4..5a106288fd 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -1866,10 +1866,10 @@ Dictionary nvim__stats(Arena *arena) /// - "rgb" true if the UI uses RGB colors (false implies |cterm-colors|) /// - "ext_..." Requested UI extensions, see |ui-option| /// - "chan" |channel-id| of remote UI -Array nvim_list_uis(void) +Array nvim_list_uis(Arena *arena) FUNC_API_SINCE(4) { - return ui_array(); + return ui_array(arena); } /// Gets the immediate children of process `pid`. |