aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2018-04-17 19:08:55 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2018-04-17 19:09:18 +0200
commitc8189096e82848079b52fbb2e1e75a3fe26674ee (patch)
tree550e40bf400b85f57226b65a9fc0291fafa744e0
parent7a13611ba2033766da8cad73f46362bd01632c2c (diff)
downloadrneovim-c8189096e82848079b52fbb2e1e75a3fe26674ee.tar.gz
rneovim-c8189096e82848079b52fbb2e1e75a3fe26674ee.tar.bz2
rneovim-c8189096e82848079b52fbb2e1e75a3fe26674ee.zip
ui_events: correct wrong argument order
-rw-r--r--src/nvim/api/ui_events.in.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h
index c599b0ce72..96d494460b 100644
--- a/src/nvim/api/ui_events.in.h
+++ b/src/nvim/api/ui_events.in.h
@@ -10,7 +10,7 @@
#include "nvim/func_attr.h"
#include "nvim/ui.h"
-void resize(Integer rows, Integer columns)
+void resize(Integer width, Integer height)
FUNC_API_SINCE(3);
void clear(void)
FUNC_API_SINCE(3);