From 5492458280ba88acc68201e30b55802e8d5ddaba Mon Sep 17 00:00:00 2001 From: Alfons Hoogervorst Date: Mon, 24 Dec 2001 16:03:58 +0000 Subject: [PATCH] use new style regexp for subject stripping (submitted by Thomas Link) --- ChangeLog.claws | 6 ++++++ configure.in | 2 +- src/summaryview.c | 4 +++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index 6d65e6e68..754b0a3ba 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2001-12-24 [alfons] 0.6.6claws17 + + * src/summaryview.c + use new style regexp for subject stripping + (patch submitted by Thomas Link ) + 2001-12-24 [darko] 0.6.6claws16 * src/pgptext.c diff --git a/configure.in b/configure.in index 12865df82..c0d081a71 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=6 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws16 +EXTRA_VERSION=claws17 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl diff --git a/src/summaryview.c b/src/summaryview.c index 548da4672..0e94e9280 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -46,6 +46,7 @@ #include #include #include +#include #include "intl.h" #include "main.h" @@ -3620,7 +3621,8 @@ void summary_simplify_subject(SummaryView *summaryview, gchar * rexp, GSList * cur; for(cur = mlist ; cur != NULL ; cur = cur->next) { MsgInfo * msginfo = (MsgInfo *) cur->data; - string_remove_all_matches(msginfo->subject, rexp, 0, 0); + string_remove_all_matches(msginfo->subject, rexp, + REG_EXTENDED, 0); } } -- 2.25.1