• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisão697dec8ec5e723ae32e12229d3ca111fe7f4ba92 (tree)
Hora2006-07-12 06:01:01
Autorvimboss
Commitervimboss

Mensagem de Log

updated for version 7.0-037

Mudança Sumário

Diff

diff -r abff2f6a3ad7 -r 697dec8ec5e7 src/screen.c
--- a/src/screen.c Tue Jul 11 20:36:45 2006 +0000
+++ b/src/screen.c Tue Jul 11 21:01:01 2006 +0000
@@ -7129,6 +7129,12 @@
71297129 return;
71307130 entered = TRUE;
71317131
7132+ /*
7133+ * Note that the window sizes are updated before reallocating the arrays,
7134+ * thus we must not redraw here!
7135+ */
7136+ ++RedrawingDisabled;
7137+
71327138 win_new_shellsize(); /* fit the windows in the new sized shell */
71337139
71347140 comp_col(); /* recompute columns for shown command and ruler */
@@ -7363,6 +7369,7 @@
73637369 #endif
73647370
73657371 entered = FALSE;
7372+ --RedrawingDisabled;
73667373
73677374 #ifdef FEAT_AUTOCMD
73687375 if (starting == 0)
diff -r abff2f6a3ad7 -r 697dec8ec5e7 src/version.c
--- a/src/version.c Tue Jul 11 20:36:45 2006 +0000
+++ b/src/version.c Tue Jul 11 21:01:01 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 37,
671+/**/
670672 36,
671673 /**/
672674 35,
Show on old repository browser