diff --git a/docs/notework.txt b/docs/notework.txt index 85c91f6..a03911d 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -22,6 +22,13 @@ ______________________________________________________________________ - Fixed small bug regarding cursor position after deleting stuff in input fields. +- Fixed crash after saving message to text file. + +- Fixed incorrect Editcompletion behaviour in overwrite mode. + +- Fixed incorrect "this message is not from you" message appearance + in netmail areas. + ______________________________________________________________________ Notes for GoldED+ 1.1.4.3, February xx 2000 diff --git a/golded3/geedit.cpp b/golded3/geedit.cpp index 954fd70..7084272 100644 --- a/golded3/geedit.cpp +++ b/golded3/geedit.cpp @@ -1937,6 +1937,9 @@ void IEclass::statusline() { uint tlen = strlen(trig); if(col >= tlen) { if(strneql(trig, currline->txt.c_str()+col-tlen, tlen)) { + int saved_insert = insert; + insert = true; + batch_mode = BATCH_MODE; uint n; for(n=0; naddr.net != GFTN_ALL or reader_msg->orig.net == 0 or not AA->isnet()) reader_keyok = NO; else { - for(vector::iterator x = CFG->aka.begin(); x != CFG->aka.begin(); x++) { + for(vector::iterator x = CFG->aka.begin(); x != CFG->aka.end(); x++) { if(reader_msg->orig.match(x->addr)) { reader_keyok = NO; break;