Subversion Repositories SvarDOS

Compare Revisions

Regard whitespace Rev 1318 → Rev 1319

//sved/trunk/sved.c
213,10 → 213,13
if (y == screenh - 2) break;
}
 
while (y < screenh - 1) {
/* fill all lines below if empty (and they need to be redrawn) */
if (l == NULL) {
while ((y < screenh - 1) && (y < uidirtyto)) {
mdr_cout_char_rep(y++, 0, ' ', scheme[COL_TXT], screenw - 1);
}
}
}
 
 
static void check_cursor_not_after_eol(struct file *db, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {