Enrico Forestieri wrote:
Maybe something like

#if defined(__CYGWIN__) || defined(__MINGW32__)
    else if ( ! isprint (c & 0x7f) && ! isspace (c))
#else
    else if ( ! isprint (c) && ! isspace (c))
#endif

But I still have to see whether the "#if" line is not to be augmented
by a " || defined(MSVC)" ;-)

It turns out that MSVC also needs this fix, see bug 2836. I'll add it soon.

Joost

Reply via email to