diff options
author | Utkarsh Maheshwari <utkarshme96@gmail.com> | 2018-09-21 18:14:32 +0530 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-12-31 12:44:22 +0100 |
commit | ba6f9f60addb569aa223f6e245df78741eab5adf (patch) | |
tree | 8751b0d1e9c7654124fa91e93dbac3d1c8ab072b /src/nvim/api/ui.c | |
parent | 8b47b56fc6216968cc8841503417586a5aba5b31 (diff) | |
download | rneovim-ba6f9f60addb569aa223f6e245df78741eab5adf.tar.gz rneovim-ba6f9f60addb569aa223f6e245df78741eab5adf.tar.bz2 rneovim-ba6f9f60addb569aa223f6e245df78741eab5adf.zip |
multigrid: Fix lint errors
Diffstat (limited to 'src/nvim/api/ui.c')
-rw-r--r-- | src/nvim/api/ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index 4f56371633..48a4708dbf 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -248,8 +248,8 @@ static void ui_set_option(UI *ui, bool init, String name, Object value, /// Sets the inner "width" and "height" of the window grid identified by /// "grid" handle. If the grid does not exist, set error. void nvim_ui_try_resize_grid(uint64_t channel_id, Integer grid, Integer width, - Integer height, Error *error) - FUNC_API_SINCE(4) FUNC_API_REMOTE_ONLY + Integer height, Error *error) + FUNC_API_SINCE(5) FUNC_API_REMOTE_ONLY { if (!pmap_has(uint64_t)(connected_uis, channel_id)) { api_set_error(error, kErrorTypeException, |