From dae8c0fead56ad99986dd3eabe6905b07d572a3a Mon Sep 17 00:00:00 2001 From: "Alexander S. Aganichev" Date: Thu, 10 May 2001 05:50:04 +0000 Subject: [PATCH] Fixed backspace operation on EOL --- golded3/geedit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/golded3/geedit.cpp b/golded3/geedit.cpp index 46414ce..77e6c6e 100644 --- a/golded3/geedit.cpp +++ b/golded3/geedit.cpp @@ -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