From: Bram Moolenaar Date: Mon, 25 Feb 2019 05:28:57 +0000 (+0100) Subject: patch 8.1.0982: update_cursor() called twice in :shell X-Git-Tag: v8.1.0982 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=32033d23975dbe674f98e1ac5a9a644002faaa3e;p=vim patch 8.1.0982: update_cursor() called twice in :shell Problem: update_cursor() called twice in :shell. Solution: Remove one of the calls. (Yasuhiro Matsumoto, closes #4039) --- diff --git a/src/terminal.c b/src/terminal.c index 7e67314f9..8d05a188e 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -3265,7 +3265,6 @@ update_system_term(term_T *term) term->tl_dirty_row_start = MAX_ROW; term->tl_dirty_row_end = 0; - update_cursor(term, TRUE); } #endif diff --git a/src/version.c b/src/version.c index cf47f21a4..8e9c87aed 100644 --- a/src/version.c +++ b/src/version.c @@ -779,6 +779,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 982, /**/ 981, /**/