diff --git a/docs/notework.txt b/docs/notework.txt index 4c196ac..fc247ec 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -10,6 +10,8 @@ ______________________________________________________________________ Notes for GoldED+ 1.1.5, /snapshot/ ______________________________________________________________________ +- Fixed case sensitive advances search. + + AKAMatchManually will work also for forwards and new messages in netmail areas. AKAMatchNet must be on. diff --git a/golded3/gesrch.cpp b/golded3/gesrch.cpp index ec54f94..8185e2d 100644 --- a/golded3/gesrch.cpp +++ b/golded3/gesrch.cpp @@ -79,6 +79,7 @@ const char* search_item_set(search_item& item, const char* s, int what) flag = true; break; case '!': search_item_option(item.reverse, s); break; + case '=': search_item_option(item.case_sensitive, s); break; case '<': search_item_option(item.where.from, s); flag = true; break; case '>': search_item_option(item.where.to, s); flag = true; break; case ':': search_item_option(item.where.subject, s); flag = true; break; @@ -88,7 +89,6 @@ const char* search_item_set(search_item& item, const char* s, int what) case '*': search_item_option(item.where.origin, s); flag = true; break; case '@': search_item_option(item.where.signature, s); flag = true; break; case '%': search_item_option(item.where.kludges, s); flag = true; break; - case '=': search_item_option(item.case_sensitive, s); flag = true; break; case '?': s++; switch(g_tolower(*s)) {