From: Matthias Andree Date: Wed, 24 Sep 2008 13:58:22 +0000 (+0200) Subject: Fix compiler warning in dprint() (closes #3120) X-Git-Tag: mutt-1-5-19-rel~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8aead4e6d2f54e40def5c339d31f1867e1f915a;p=mutt Fix compiler warning in dprint() (closes #3120) --- diff --git a/ChangeLog b/ChangeLog index b65d8f36..f39f55ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2008-09-24 15:53 +0200 Rocco Rutte (c842922bea10) + + * doc/manual.xml.head: Manual: Fix typo + +2008-09-24 12:31 +0200 Rocco Rutte (2a70f7166d9d) + + * ChangeLog, mbyte.c: Provide legacy implementations for iswalpha() + and iswupper() + + In mbyte.h and without using wc functions, only the prototypes were + defined but implementations were missing resulting in build errors. + These new functions are derived from the iswalnum() and towupper() + routines which don't provide full unicode coverage. + 2008-09-24 12:28 +0200 Rocco Rutte (32bfe3700b27) * imap/imap.c: Fix an infinite loop for imap searches diff --git a/pager.c b/pager.c index 66d5f906..e0d9c6a2 100644 --- a/pager.c +++ b/pager.c @@ -1104,7 +1104,7 @@ static int format_line (struct line_t **lineInfo, int n, unsigned char *buf, if (Charset_is_utf8 && (wc == 0x200B || wc == 0xFEFF)) { - dprint (3, (debugfile, "skip zero-width character U+%04X\n", wc)); + dprint (3, (debugfile, "skip zero-width character U+%04X\n", (unsigned short)wc)); continue; }