0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.0222

This commit is contained in:
Bram Moolenaar
2006-03-12 22:05:10 +00:00
parent 1fc0046932
commit 600dddcf66
6 changed files with 160 additions and 27 deletions

View File

@@ -1733,7 +1733,7 @@ cmdline_changed:
validate_cursor();
save_cmdline(&save_ccline);
update_screen(NOT_VALID);
update_screen(SOME_VALID);
restore_cmdline(&save_ccline);
msg_starthere();
@@ -1781,7 +1781,7 @@ returncmd:
curwin->w_botline = old_botline;
highlight_match = FALSE;
validate_cursor(); /* needed for TAB */
redraw_later(NOT_VALID);
redraw_later(SOME_VALID);
}
#endif
@@ -5849,7 +5849,7 @@ ex_window()
curwin->w_cursor.col = ccline.cmdpos;
changed_line_abv_curs();
invalidate_botline();
redraw_later(NOT_VALID);
redraw_later(SOME_VALID);
/* Save the command line info, can be used recursively. */
save_ccline = ccline;