K 10 svn:author V 4 roam K 8 svn:date V 27 2004-08-27T12:45:45.000000Z K 7 svn:log V 459 Fix a long-standing problem with displaying characters with the 8th bit set: the return value of fgets() should NOT be kept in a signed char variable, since passing that to addch() would sign-extend it, setting a whole lot of attribute bits and resulting in a bold, blinking, alt-charset display of e.g. all Cyrillic characters. Instead, keep fgets()'s result in an int variable, as $DEITY (dmr? :) intended. Bump PORTREVISION for the functionality change. END