summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-02-25 06:28:57 +0100
committerBram Moolenaar <Bram@vim.org>2019-02-25 06:28:57 +0100
commit32033d23975dbe674f98e1ac5a9a644002faaa3e (patch)
treef136c4e7432b46c4aa262b92bfd5a531a8aece0e
parent5b868a82ed2151201350122fcdb75b35c557c528 (diff)
patch 8.1.0982: update_cursor() called twice in :shellv8.1.0982
Problem: update_cursor() called twice in :shell. Solution: Remove one of the calls. (Yasuhiro Matsumoto, closes #4039)
-rw-r--r--src/terminal.c1
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/terminal.c b/src/terminal.c
index 7e67314f96..8d05a188e1 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 cf47f21a41..8e9c87aed6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -780,6 +780,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 982,
+/**/
981,
/**/
980,