+2006-10-18 [colin] 2.5.5cvs17
+
+ * src/gtk/quicksearch.c
+ Remove "save to history only if there's
+ no syntax error", it breaks for some
+ reason which I'll investigate later.
+
2006-10-18 [colin] 2.5.5cvs16
* src/prefs_common.c
( cvs diff -u -r 1.382.2.316 -r 1.382.2.317 src/compose.c; ) > 2.5.5cvs14.patchset
( cvs diff -u -r 1.382.2.317 -r 1.382.2.318 src/compose.c; cvs diff -u -r 1.50.2.27 -r 1.50.2.28 src/compose.h; ) > 2.5.5cvs15.patchset
( cvs diff -u -r 1.204.2.105 -r 1.204.2.106 src/prefs_common.c; cvs diff -u -r 1.103.2.63 -r 1.103.2.64 src/prefs_common.h; cvs diff -u -r 1.395.2.263 -r 1.395.2.264 src/summaryview.c; cvs diff -u -r 1.1.2.47 -r 1.1.2.48 src/gtk/quicksearch.c; cvs diff -u -r 1.1.2.8 -r 1.1.2.9 src/gtk/quicksearch.h; ) > 2.5.5cvs16.patchset
+( cvs diff -u -r 1.1.2.48 -r 1.1.2.49 src/gtk/quicksearch.c; ) > 2.5.5cvs17.patchset
/* add to history */
if (!quicksearch->in_typing && search_string && strlen(search_string) != 0) {
- /* only if there's no syntax error */
- if (quicksearch->matcher_list != NULL ||
- prefs_common.summary_quicksearch_type != QUICK_SEARCH_EXTENDED) {
- prefs_common.summary_quicksearch_history =
- add_history(prefs_common.summary_quicksearch_history,
- search_string);
- gtk_combo_set_popdown_strings(GTK_COMBO(quicksearch->search_string_entry),
- prefs_common.summary_quicksearch_history);
- }
+ prefs_common.summary_quicksearch_history =
+ add_history(prefs_common.summary_quicksearch_history,
+ search_string);
+ gtk_combo_set_popdown_strings(GTK_COMBO(quicksearch->search_string_entry),
+ prefs_common.summary_quicksearch_history);
}
prepare_matcher(quicksearch);