diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2016-05-30 15:43:58 -0400 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2016-05-30 15:43:58 -0400 |
| commit | 30531bc38dd2110099ba6fc6f5a1d32195a697eb (patch) | |
| tree | d332a5bde3c621cc8fe42cc809f9399790ec8e04 /src/nvim/tui | |
| parent | 748898b4dd992c5a5d15a0e1f9f047fc42ba4fd3 (diff) | |
| parent | 7a44f9e343c79a1dedf535b9146b308122085300 (diff) | |
| download | rneovim-30531bc38dd2110099ba6fc6f5a1d32195a697eb.tar.gz rneovim-30531bc38dd2110099ba6fc6f5a1d32195a697eb.tar.bz2 rneovim-30531bc38dd2110099ba6fc6f5a1d32195a697eb.zip | |
Merge pull request #4845 from ZyX-I/luaviml'/lua'/encode_vim_to_object'/refactor-kvec
lib/kvec.h refactorings
Diffstat (limited to 'src/nvim/tui')
| -rw-r--r-- | src/nvim/tui/tui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 62bc81ba64..fe1a864067 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -681,7 +681,7 @@ static void invalidate(UI *ui, int top, int bot, int left, int right) intersects->right = MAX(right, intersects->right); } else { // Else just add a new entry; - kv_push(Rect, data->invalid_regions, ((Rect){top, bot, left, right})); + kv_push(data->invalid_regions, ((Rect) { top, bot, left, right })); } } |