Fixed backspace operation on EOL

This commit is contained in:
Alexander S. Aganichev 2001-05-10 05:50:04 +00:00
parent 2e70dec322
commit dae8c0fead

View File

@ -565,8 +565,8 @@ void IEclass::GoLeft() {
if(currline->prev) {
GoUp();
GoEOL();
if((col != mincol) and ((currline->txt[col] == '\n') or not ((col == (maxcol + 1)) and (currline->txt[col-1] == ' '))))
col--;
// if((col != mincol) and ((currline->txt[col] == '\n') or not ((col == (maxcol + 1)) and (currline->txt[col-1] == ' '))))
// col--;
}
}
else