From: Johan D Date: Tue, 4 Aug 2009 10:08:37 +0000 (+0200) Subject: Fix MH parsing, fixes [0698e8195545]. Closes #3312 X-Git-Tag: neomutt-20160307~460 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4213ba620809554250a569bd5ccb22e84d54a70;p=neomutt Fix MH parsing, fixes [0698e8195545]. Closes #3312 --- diff --git a/ChangeLog b/ChangeLog index cf9cfe0e9..126caaae1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2009-08-01 15:16 +0200 Rocco Rutte (29727d19634a) + + * doc/manual.xml.head: Manual: use full names for é and + è entities. Closes #3286. + + This is necessary because we want to install a us-ascii manual.txt + that would contain only "e" instead of accented characters. + +2009-07-30 17:56 +0200 Rocco Rutte (4a572310c3b5) + + * main.c: Fix mutt -h output for -a/-- options + 2009-07-29 13:26 -0700 Brendan Cully (a2a4286491b4) * hcache.c, hcache.h, imap/util.c: Harmonize hcache uidvalidity size diff --git a/mh.c b/mh.c index b03e71465..2b31cca7f 100644 --- a/mh.c +++ b/mh.c @@ -146,7 +146,7 @@ static int mh_read_token (char *t, int *first, int *last) if ((p = strchr (t, '-'))) { *p++ = '\0'; - if (mutt_atoi (t, first) < 0 || mutt_atoi (t, last) < 0) + if (mutt_atoi (t, first) < 0 || mutt_atoi (p, last) < 0) return -1; } else