diff options
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/message-thread.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 479ee41e38..a7113ff3b9 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2000-07-08 Dan Winship <danw@helixcode.com> + + * message-thread.c (get_root_subject): fix a "Re:" parsing bug + 2000-07-08 Jeffrey Stedfast <fejj@helixcode.com> * mail-ops.c (real_fetch_mail): Always dump incoming messages to 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; |