diff src/screen.c @ 849:eac1cd7f1eff

updated for version 7.0f04
author vimboss
date Fri, 28 Apr 2006 22:38:25 +0000
parents 8bebcabccc2c
children 8cd729851562
line wrap: on
line diff
--- a/src/screen.c
+++ b/src/screen.c
@@ -463,6 +463,12 @@ update_screen(type)
 		))
 	curwin->w_redr_type = type;
 
+#ifdef FEAT_WINDOWS
+    /* Redraw the tab pages line if needed. */
+    if (redraw_tabline || type >= NOT_VALID)
+	draw_tabline();
+#endif
+
 #ifdef FEAT_SYN_HL
     /*
      * Correct stored syntax highlighting info for changes in each displayed
@@ -490,12 +496,6 @@ update_screen(type)
     }
 #endif
 
-#ifdef FEAT_WINDOWS
-    /* Redraw the tab pages line if needed. */
-    if (redraw_tabline || type >= NOT_VALID)
-	draw_tabline();
-#endif
-
     /*
      * Go from top to bottom through the windows, redrawing the ones that need
      * it.