Subversion Repositories SvarDOS

Rev

Rev 1318 | Rev 1320 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1318 Rev 1319
Line 211... Line 211...
211
#endif
211
#endif
212
 
212
 
213
    if (y == screenh - 2) break;
213
    if (y == screenh - 2) break;
214
  }
214
  }
215
 
215
 
-
 
216
  /* fill all lines below if empty (and they need to be redrawn) */
-
 
217
  if (l == NULL) {
216
  while (y < screenh - 1) {
218
    while ((y < screenh - 1) && (y < uidirtyto)) {
217
    mdr_cout_char_rep(y++, 0, ' ', scheme[COL_TXT], screenw - 1);
219
      mdr_cout_char_rep(y++, 0, ' ', scheme[COL_TXT], screenw - 1);
-
 
220
    }
218
  }
221
  }
219
}
222
}
220
 
223
 
221
 
224
 
222
static void check_cursor_not_after_eol(struct file *db, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {
225
static void check_cursor_not_after_eol(struct file *db, unsigned char *uidirtyfrom, unsigned char *uidirtyto) {