aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2018-09-09 12:44:03 +0200
committerGitHub <noreply@github.com>2018-09-09 12:44:03 +0200
commitc5790d91897c094d5f154584c81648c2731f4ff2 (patch)
tree5a936137c3fec9756edd1da1f2e737c99594df04 /src/nvim/event
parente50ff1b2e9b91e10fce5781395a986a48be8d7b8 (diff)
parent8fd3725cc8d54bced0a8fe1474986d93e9ef0b5b (diff)
downloadrneovim-c5790d91897c094d5f154584c81648c2731f4ff2.tar.gz
rneovim-c5790d91897c094d5f154584c81648c2731f4ff2.tar.bz2
rneovim-c5790d91897c094d5f154584c81648c2731f4ff2.zip
Merge pull request #8915 from rickyz/line_wrapping
Fix terminal line wrapping detection in the TUI.
Diffstat (limited to 'src/nvim/event')
-rw-r--r--src/nvim/event/defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/defs.h b/src/nvim/event/defs.h
index 55b2d277bb..fdd4f17d5c 100644
--- a/src/nvim/event/defs.h
+++ b/src/nvim/event/defs.h
@@ -4,7 +4,7 @@
#include <assert.h>
#include <stdarg.h>
-#define EVENT_HANDLER_MAX_ARGC 9
+#define EVENT_HANDLER_MAX_ARGC 10
typedef void (*argv_callback)(void **argv);
typedef struct message {