1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-03 02:50:42 +00:00

Review/Retest mlerase when erase to eol is not available.

This commit is contained in:
Renaud 2015-01-23 13:13:07 +08:00
parent 5a235ecf8c
commit 7018880551

View File

@ -1317,12 +1317,9 @@ void mlerase( void) {
if( eolexist == TRUE)
TTeeol() ;
else {
int i ;
for( ttcol = 0 ; ttcol < term.t_ncol ; ttcol++)
TTputc( ' ') ;
for( i = 1 ; i < term.t_ncol ; i++)
TTputc(' ') ;
movecursor( term.t_nrow, 1) ; /* force the move! */
movecursor( term.t_nrow, 0) ;
}