diff --git a/src/libvterm/src/vterm_internal.h b/src/libvterm/src/vterm_internal.h index d83588053d..759382cb1e 100644 --- a/src/libvterm/src/vterm_internal.h +++ b/src/libvterm/src/vterm_internal.h @@ -144,8 +144,8 @@ struct VTermState struct VTermPen pen; struct { - int cursor_visible:1; - int cursor_blink:1; + unsigned int cursor_visible:1; + unsigned int cursor_blink:1; unsigned int cursor_shape:2; } mode; } saved; diff --git a/src/terminal.c b/src/terminal.c index fe1d5da2f5..020271a89e 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -1170,6 +1170,7 @@ may_set_cursor_props(term_T *term) { if (in_terminal_loop == term) { + did_change_cursor = TRUE; if (term->tl_cursor_color != NULL) term_cursor_color(term->tl_cursor_color); else diff --git a/src/version.c b/src/version.c index fa404b63db..3758ab97f0 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 920, /**/ 919, /**/