Don't use 'char' for number of lines. Based on commit 8841922 from uEMACS/PK

This commit is contained in:
Renaud 2014-12-24 10:01:37 +08:00
parent 3a67809c74
commit 14bfe4fa5f
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ struct window {
struct line *w_markp; /* Line containing "mark" */
int w_doto; /* Byte offset for "." */
int w_marko; /* Byte offset for "mark" */
char w_toprow; /* Origin 0 top row of window */
char w_ntrows; /* # of rows of text in window */
int w_toprow ; /* Origin 0 top row of window */
int w_ntrows ; /* # of rows of text in window */
char w_force; /* If NZ, forcing row. */
char w_flag; /* Flags. */
#if COLOR