Comment 6 for bug 1275210

Revision history for this message
Eldar Khayrullin (eldar) wrote :

$ file main.c
main.c: C source, UTF-8 Unicode text

(gdb) show charset
The host character set is "auto; currently UTF-8".
The target character set is "auto; currently UTF-8".
The target wide character set is "auto; currently UTF-32".

Enter text:
-with TUI
(gdb) M-PM-?M-Q~@M-PM-8M-PM-2M-PM-5M-Q~B // currently
-without TUI
(gdb) привет // must be

Without TUI
(gdb) list main.c:1
1 #include <stdio.h>
2
3 int main()
4 {
5 printf("Привет Мир\n"); // correctly
6 return 0;
7 }