-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi folks!

I tried to use FEATURE_VI_8BIT in busybox 1.9.0 bus was unsuccessful so
far. Even though this feature is enabled in my configuration, I can't
enter german umlauts into vi.

Having a small peak at the code in vi.c, I commented out all occurences
of:

c = '.';

which made it work again (at least I could input all german umlauts
without problems).

To find out a bit more about this problem, I wrote a little test program:

- ----------------------------- 8< ------------------------
int main(int argc, char **argv)
{
  unsigned int x;
  while(1) {
    x = getc(stdin);
    if(isprint(x))
    {
      printf("%c is printable\n", x);
    } else {
      printf("%c is not printable\n", x);
    }
  }
  return 0;
}
- ----------------------------- 8< ------------------------

Needless to say, it always prints out the "is not printable" text
for all umlauts I enter.

Am I doing something wrong or is this a bug?

ciao,
- --
Alexander Griesser (Netzwerkadministration)
E-Mail: [EMAIL PROTECTED] | Web: http://www.lkh-vil.or.at
KABEG LKH Villach | Nikolaigasse 43 | 9500 Villach
Tel.:   +43 4242 208 3061 | Fax.:   +43 4242 971 3061
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHgfou66HVD6KUm1oRAllVAJ926wqnCMavN3YnM0bFB3dFpscSJwCbBhH2
Ml5MLDlQ492VRV1gwaVxqxs=
=3j4v
-----END PGP SIGNATURE-----
_______________________________________________
busybox mailing list
[email protected]
http://busybox.net/cgi-bin/mailman/listinfo/busybox

Reply via email to