From: Colin Leroy Date: Mon, 14 Sep 2009 07:11:23 +0000 (+0000) Subject: 2009-09-14 [colin] 3.7.2cvs31 X-Git-Tag: rel_3_7_3~21 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=970708cd27126b79786db06c9355acc6348316af 2009-09-14 [colin] 3.7.2cvs31 * src/common/utils.c Add "Re :" prefix from french Yahoo mail. Patch by Didier Barvaux, fixes bug 1999 --- diff --git a/ChangeLog b/ChangeLog index b2fef9393..0838bddfe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-09-14 [colin] 3.7.2cvs31 + + * src/common/utils.c + Add "Re :" prefix from french Yahoo mail. + Patch by Didier Barvaux, fixes bug 1999 + 2009-09-10 [mones] 3.7.2cvs30 * manual/plugins.xml diff --git a/PATCHSETS b/PATCHSETS index 4eab4e04c..599df6c2e 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3855,3 +3855,4 @@ ( cvs diff -u -r 1.30.2.56 -r 1.30.2.57 src/prefs_toolbar.c; ) > 3.7.2cvs28.patchset ( cvs diff -u -r 1.24.2.25 -r 1.24.2.26 Makefile.am; ) > 3.7.2cvs29.patchset ( cvs diff -u -r 1.1.2.25 -r 1.1.2.26 manual/plugins.xml; cvs diff -u -r 1.1.2.7 -r 1.1.2.8 manual/es/plugins.xml; ) > 3.7.2cvs30.patchset +( cvs diff -u -r 1.36.2.174 -r 1.36.2.175 src/common/utils.c; ) > 3.7.2cvs31.patchset diff --git a/configure.ac b/configure.ac index 31a18b536..f572a89b4 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=7 MICRO_VERSION=2 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=30 +EXTRA_VERSION=31 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/common/utils.c b/src/common/utils.c index 8b80f8fff..d9bd61687 100644 --- a/src/common/utils.c +++ b/src/common/utils.c @@ -3720,6 +3720,7 @@ int subject_get_prefix_length(const gchar *subject) "Ad\\:", /* "Ad" (Norwegian) */ "\347\255\224\345\244\215\\:", /* "Re" (Chinese, UTF-8) */ "R\303\251f\\. \\:", /* "Réf. :" (French Lotus Notes) */ + "Re \\:", /* "Re :" (French Yahoo Mail) */ /* add more */ }; const int PREFIXES = sizeof prefixes / sizeof prefixes[0]; @@ -3778,6 +3779,7 @@ int subject_get_prefix_length(const gchar *subject) "vs:", /* "Vs" (Norwegian) */ "ad:", /* "Ad" (Norwegian) */ "R\303\251f. :", /* "Réf. :" (French Lotus Notes) */ + "Re :", /* "Re :" (French Yahoo Mail) */ /* add more */ }; const int PREFIXES = sizeof prefixes / sizeof prefixes[0];