0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0030

This commit is contained in:
Bram Moolenaar
2005-01-04 21:31:43 +00:00
parent a0a83bea65
commit b11160ef88
7 changed files with 41 additions and 54 deletions

View File

@@ -6475,10 +6475,6 @@ screenalloc(clear)
win_new_shellsize(); /* fit the windows in the new sized shell */
#ifdef FEAT_GUI_BEOS
vim_lock_screen(); /* be safe, put it here */
#endif
comp_col(); /* recompute columns for shown command and ruler */
/*
@@ -6692,9 +6688,6 @@ screenalloc(clear)
}
#endif
#ifdef FEAT_GUI_BEOS
vim_unlock_screen();
#endif
entered = FALSE;
}
@@ -7526,9 +7519,6 @@ screen_ins_lines(off, row, line_count, end, wp)
clip_scroll_selection(-line_count);
#endif
#ifdef FEAT_GUI_BEOS
vim_lock_screen();
#endif
#ifdef FEAT_GUI
/* Don't update the GUI cursor here, ScreenLines[] is invalid until the
* scrolling is actually carried out. */
@@ -7580,9 +7570,6 @@ screen_ins_lines(off, row, line_count, end, wp)
lineinvalid(temp, (int)Columns);
}
}
#ifdef FEAT_GUI_BEOS
vim_unlock_screen();
#endif
screen_stop_highlight();
windgoto(cursor_row, 0);
@@ -7754,9 +7741,6 @@ screen_del_lines(off, row, line_count, end, force, wp)
clip_scroll_selection(line_count);
#endif
#ifdef FEAT_GUI_BEOS
vim_lock_screen();
#endif
#ifdef FEAT_GUI
/* Don't update the GUI cursor here, ScreenLines[] is invalid until the
* scrolling is actually carried out. */
@@ -7815,9 +7799,6 @@ screen_del_lines(off, row, line_count, end, force, wp)
lineinvalid(temp, (int)Columns);
}
}
#ifdef FEAT_GUI_BEOS
vim_unlock_screen();
#endif
screen_stop_highlight();