patch 8.2.0202: when 'lazyredraw' is set the window title may not be updated
Problem: When 'lazyredraw' is set the window title may not be updated.
Solution: Set "do_redraw" before entering the main loop. (Jason Franklin)
diff --git a/src/main.c b/src/main.c
index 68a419e..c747aba 100644
--- a/src/main.c
+++ b/src/main.c
@@ -893,6 +893,10 @@
}
#endif
+ // Redraw at least once, also when 'lazyredraw' is set, to make sure the
+ // window title gets updated.
+ do_redraw = TRUE;
+
TIME_MSG("before starting main loop");
/*
diff --git a/src/version.c b/src/version.c
index 01e54a0..884e01a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -743,6 +743,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 202,
+/**/
201,
/**/
200,