diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-03-08 09:15:21 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2024-03-08 09:23:28 +0100 |
commit | e534ec47db4bf5e110c828ca3d875f5685dcfdde (patch) | |
tree | 9ff3b9bc8e98e9ed356fdc08fa91ec2529328d8c /src/nvim/highlight.c | |
parent | 55c9e2c96e28059a5102e2551b16b4fa4592723b (diff) | |
download | rneovim-e534ec47db4bf5e110c828ca3d875f5685dcfdde.tar.gz rneovim-e534ec47db4bf5e110c828ca3d875f5685dcfdde.tar.bz2 rneovim-e534ec47db4bf5e110c828ca3d875f5685dcfdde.zip |
refactor(ui): remove outdated UI vs UIData distinction
Just some basic spring cleaning.
In the distant past, not all UI:s where remote UI:s. They still aren't,
but both of the "UI" and "UIData" structs are now only for remote UI:s.
Thus join them as "RemoteUI".
Diffstat (limited to 'src/nvim/highlight.c')
-rw-r--r-- | src/nvim/highlight.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/highlight.c b/src/nvim/highlight.c index 5723ea1198..8729c74ce8 100644 --- a/src/nvim/highlight.c +++ b/src/nvim/highlight.c @@ -127,7 +127,7 @@ retry: {} } /// When a UI connects, we need to send it the table of highlights used so far. -void ui_send_all_hls(UI *ui) +void ui_send_all_hls(RemoteUI *ui) { for (size_t i = 1; i < set_size(&attr_entries); i++) { Arena arena = ARENA_EMPTY; |