#2956: Recipient address broken if containing Š character (UTF-8 code: 0xc5 0xA0)
Comment (by phr): A quick fix for FreeBSD seems to be replace all ocurrences of isspace like this: {{{ #include <wctype.h> #undef isspace #define isspace(c) iswspace(btowc(c)) }}} See: http://mail.python.org/pipermail/python- checkins/2004-August/042343.html Unlike the comment says, it's still needed for FreeBSD 6 and 7. -- Ticket URL: <http://dev.mutt.org/trac/ticket/2956#comment:7>