9831013cbdbd3d06430a1db01d8c32d50c7d1c04 ('speakup: convert screen reading to 16bit characters') paved the way for handling unicode characters in speakup, but for the review mode, it missed actually getting unicode characters from the VC. This fixes by just turning the use_unicode parameter to 1. Reported-by: Zahari Yurukov <zahari.yurukov@xxxxxxxxx> Signed-off-by: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> Tested-by: Zahari Yurukov <zahari.yurukov@xxxxxxxxx> Index: linux-2.6/drivers/staging/speakup/main.c =================================================================== --- linux-2.6.orig/drivers/staging/speakup/main.c +++ linux-2.6/drivers/staging/speakup/main.c @@ -483,7 +483,7 @@ static u16 get_char(struct vc_data *vc, c |= 0x100; } - ch = inverse_translate(vc, c, 0); + ch = inverse_translate(vc, c, 1); *attribs = (w & 0xff00) >> 8; } return ch; _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel