comparison src/screen.c @ 446:7472c565592a v7.0117

updated for version 7.0117
author vimboss
date Wed, 27 Jul 2005 21:13:01 +0000
parents 169f2a51b527
children a5fcf36ef512
comparison
equal deleted inserted replaced
445:c773cb978acf 446:7472c565592a
167 static void linecopy __ARGS((int to, int from, win_T *wp)); 167 static void linecopy __ARGS((int to, int from, win_T *wp));
168 static void redraw_block __ARGS((int row, int end, win_T *wp)); 168 static void redraw_block __ARGS((int row, int end, win_T *wp));
169 #endif 169 #endif
170 static int win_do_lines __ARGS((win_T *wp, int row, int line_count, int mayclear, int del)); 170 static int win_do_lines __ARGS((win_T *wp, int row, int line_count, int mayclear, int del));
171 static void win_rest_invalid __ARGS((win_T *wp)); 171 static void win_rest_invalid __ARGS((win_T *wp));
172 static int screen_ins_lines __ARGS((int, int, int, int, win_T *wp));
173 static void msg_pos_mode __ARGS((void)); 172 static void msg_pos_mode __ARGS((void));
174 #if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT) 173 #if defined(FEAT_WINDOWS) || defined(FEAT_WILDMENU) || defined(FEAT_STL_OPT)
175 static int fillchar_status __ARGS((int *attr, int is_curwin)); 174 static int fillchar_status __ARGS((int *attr, int is_curwin));
176 #endif 175 #endif
177 #ifdef FEAT_VERTSPLIT 176 #ifdef FEAT_VERTSPLIT
7616 * When scrolling region used 'off' is the offset from the top for the region. 7615 * When scrolling region used 'off' is the offset from the top for the region.
7617 * 'row' and 'end' are relative to the start of the region. 7616 * 'row' and 'end' are relative to the start of the region.
7618 * 7617 *
7619 * return FAIL for failure, OK for success. 7618 * return FAIL for failure, OK for success.
7620 */ 7619 */
7621 static int 7620 int
7622 screen_ins_lines(off, row, line_count, end, wp) 7621 screen_ins_lines(off, row, line_count, end, wp)
7623 int off; 7622 int off;
7624 int row; 7623 int row;
7625 int line_count; 7624 int line_count;
7626 int end; 7625 int end;