diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-09 11:03:50 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-09 11:03:50 +0800 |
commit | 541c90527905994cdabb45d98398600a88db7b18 (patch) | |
tree | f1f44632ea0138496dd4f7db33a00b6f29cd0d56 /mail/message-thread.c | |
parent | 7f64833332cfb7c5d5b67996132972af30c0c6a0 (diff) | |
download | gsoc2013-evolution-541c90527905994cdabb45d98398600a88db7b18.tar.gz gsoc2013-evolution-541c90527905994cdabb45d98398600a88db7b18.tar.zst gsoc2013-evolution-541c90527905994cdabb45d98398600a88db7b18.zip |
fix a "Re:" parsing bug
* message-thread.c (get_root_subject): fix a "Re:" parsing bug
svn path=/trunk/; revision=3998
Diffstat (limited to 'mail/message-thread.c')
-rw-r--r-- | mail/message-thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/message-thread.c b/mail/message-thread.c index a1abc23560..e3200b3a69 100644 --- a/mail/message-thread.c +++ b/mail/message-thread.c @@ -190,7 +190,7 @@ get_root_subject(struct _container *c, int *re) if ((s[0] == 'r' || s[0]=='R') && (s[1] == 'e' || s[1]=='E')) { p = s+2; - while (ispunct(*p) || (isdigit(*p) && (*p != ':'))) + while (isdigit(*p) || (ispunct(*p) && (*p != ':'))) p++; if (*p==':') { *re = TRUE; |