summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ex_getln.c7
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 1f5c873d..f811889d 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -1852,8 +1852,11 @@ cmdline_changed:
# endif
)
/* Always redraw the whole command line to fix shaping and
- * right-left typing. Not efficient, but it works. */
- redrawcmd();
+ * right-left typing. Not efficient, but it works.
+ * Do it only when there are no characters left to read
+ * to avoid useless intermediate redraws. */
+ if (vpeekc() == NUL)
+ redrawcmd();
#endif
}
diff --git a/src/version.c b/src/version.c
index 0b6c063b..c3d3555a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 453,
+/**/
452,
/**/
451,