diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-07-27 21:13:01 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-07-27 21:13:01 +0000 |
commit | 87e25fdf80c7b45deee9c59389b51503e906d93b (patch) | |
tree | e477f86746245499e324e1d1e9ccada6aed035e9 /src/screen.c | |
parent | 231334e6efbf3a7f89183f8257e09492534a5f8c (diff) | |
download | vim-git-87e25fdf80c7b45deee9c59389b51503e906d93b.tar.gz |
updated for version 7.0117v7.0117
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/screen.c b/src/screen.c index c07691e86..a3f3e0bd1 100644 --- a/src/screen.c +++ b/src/screen.c @@ -169,7 +169,6 @@ static void redraw_block __ARGS((int row, int end, win_T *wp)); #endif static int win_do_lines __ARGS((win_T *wp, int row, int line_count, int mayclear, int del)); static void win_rest_invalid __ARGS((win_T *wp)); -static int screen_ins_lines __ARGS((int, int, int, int, win_T *wp)); static void msg_pos_mode __ARGS((void)); #if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT) static int fillchar_status __ARGS((int *attr, int is_curwin)); @@ -7618,7 +7617,7 @@ win_rest_invalid(wp) * * return FAIL for failure, OK for success. */ - static int + int screen_ins_lines(off, row, line_count, end, wp) int off; int row; |