aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-composer-utils.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-02-22 16:39:28 +0800
committerMilan Crha <mcrha@redhat.com>2011-02-22 16:39:28 +0800
commit7745ae29860377c3b44b47ed3929b7a881d10fe7 (patch)
tree701a1dec023f1e484287da5e0ce6051a4ec87b13 /mail/em-composer-utils.c
parent065755c13c934634aeee08477ae4ed6a7d4a816e (diff)
downloadgsoc2013-evolution-7745ae29860377c3b44b47ed3929b7a881d10fe7.tar
gsoc2013-evolution-7745ae29860377c3b44b47ed3929b7a881d10fe7.tar.gz
gsoc2013-evolution-7745ae29860377c3b44b47ed3929b7a881d10fe7.tar.bz2
gsoc2013-evolution-7745ae29860377c3b44b47ed3929b7a881d10fe7.tar.lz
gsoc2013-evolution-7745ae29860377c3b44b47ed3929b7a881d10fe7.tar.xz
gsoc2013-evolution-7745ae29860377c3b44b47ed3929b7a881d10fe7.tar.zst
gsoc2013-evolution-7745ae29860377c3b44b47ed3929b7a881d10fe7.zip
Bug #434972 - Reply does not detect "RE :" subject prefix
Diffstat (limited to 'mail/em-composer-utils.c')
-rw-r--r--mail/em-composer-utils.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-composer-utils.c b/mail/em-composer-utils.c
index 3f0c4b155a..40609f0f24 100644
--- a/mail/em-composer-utils.c
+++ b/mail/em-composer-utils.c
@@ -1966,8 +1966,10 @@ reply_get_composer (EShell *shell,
/* Set the subject of the new message. */
if ((subject = (gchar *) camel_mime_message_get_subject (message))) {
- if (g_ascii_strncasecmp (subject, "Re: ", 4) != 0)
+ if (g_ascii_strncasecmp (subject, "Re: ", 4) != 0 && g_ascii_strncasecmp (subject, "Re : ", 5) != 0)
subject = g_strdup_printf ("Re: %s", subject);
+ else if (g_ascii_strncasecmp (subject, "Re : ", 5) == 0)
+ subject = g_strdup_printf ("Re: %s", subject + 5);
else
subject = g_strdup (subject);
} else {