patch 8.1.0940: MS-Windows console resizing not handled properly

Problem:    MS-Windows console resizing not handled properly.
Solution:   Handle resizing the console better. (Nobuhiro Takasaki,
            closes #3968, closes #3611)
diff --git a/src/normal.c b/src/normal.c
index 624e347..ca0d8ff 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -5401,6 +5401,9 @@
 # endif
 #endif
 	redraw_later(CLEAR);
+#if defined(WIN3264) && !defined(FEAT_GUI_W32)
+	resize_console_buf();
+#endif
     }
 }