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
This commit is contained in:
Colin Leroy 2009-09-14 07:11:23 +00:00
parent 26d7159d11
commit 970708cd27
4 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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=

View file

@ -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];