diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-03-08 10:04:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-08 10:04:04 +0100 |
commit | 6d680d977525d1198be53c1377c8319e4b60f6c0 (patch) | |
tree | 9ff3b9bc8e98e9ed356fdc08fa91ec2529328d8c /src/nvim/highlight.c | |
parent | 55c9e2c96e28059a5102e2551b16b4fa4592723b (diff) | |
parent | e534ec47db4bf5e110c828ca3d875f5685dcfdde (diff) | |
download | rneovim-6d680d977525d1198be53c1377c8319e4b60f6c0.tar.gz rneovim-6d680d977525d1198be53c1377c8319e4b60f6c0.tar.bz2 rneovim-6d680d977525d1198be53c1377c8319e4b60f6c0.zip |
Merge pull request #27775 from bfredl/nouidata
refactor(ui): remove outdated UI vs UIData distinction
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; |