aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-06-03 23:44:06 +0200
committerGitHub <noreply@github.com>2018-06-03 23:44:06 +0200
commit32935c86122557dea934d669959eef4ef2b2f910 (patch)
treeaebb7ea980c25346a9a959c4db885df6f3da3ed4 /src
parenta93690bcebaf4e2c6af0ad613c000c6b3a478855 (diff)
parenta80f73f04317a161306d503a605bca2c1a7f73a0 (diff)
downloadrneovim-32935c86122557dea934d669959eef4ef2b2f910.tar.gz
rneovim-32935c86122557dea934d669959eef4ef2b2f910.tar.bz2
rneovim-32935c86122557dea934d669959eef4ef2b2f910.zip
Merge #8414 'Windows fixes'
Diffstat (limited to 'src')
-rw-r--r--src/nvim/tui/tui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c
index 42ed9ecc7f..25c39587f4 100644
--- a/src/nvim/tui/tui.c
+++ b/src/nvim/tui/tui.c
@@ -849,7 +849,7 @@ CursorShape tui_cursor_decode_shape(const char *shape_str)
static cursorentry_T decode_cursor_entry(Dictionary args)
{
- cursorentry_T r;
+ cursorentry_T r = shape_table[0];
for (size_t i = 0; i < args.size; i++) {
char *key = args.items[i].key.data;