1
0
forked from aniani/vim

updated for version 7.2-042

This commit is contained in:
Bram Moolenaar
2008-11-15 15:06:17 +00:00
parent 701f7afcdf
commit d4153d4a62
4 changed files with 27 additions and 7 deletions

View File

@@ -1784,10 +1784,15 @@ struct window_S
#endif
/*
* The next three specify the offsets for displaying the buffer:
* "w_topline", "w_leftcol" and "w_skipcol" specify the offsets for
* displaying the buffer.
*/
linenr_T w_topline; /* buffer line number of the line at the
top of the window */
#ifdef FEAT_AUTOCMD
char w_topline_was_set; /* flag set to TRUE when topline is set,
e.g. by winrestview() */
#endif
#ifdef FEAT_DIFF
int w_topfill; /* number of filler lines above w_topline */
int w_old_topfill; /* w_topfill at last redraw */