You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
ConEmu build: 180528 / 180617 x64
OS version: Windows 7 / 10 x64
Used shell version: cmd
Problem description
Hi developer, I used ver. 170910 for a long time. Last month I update to 180528 and found something weird in display Chinese characters. Just now I checked ver. 180617 and it happend again, so I submit this issue here.
I'm not sure whether this bug exists in previous version like ver. 180503.
Steps to reproduce
Simply compile these codes and run the executable file in ConEmu:
#include <stdio.h>
int main(void)
{
printf("漢字漢字漢字"); /* 漢字 means Chinese character */
getchar(); /* <--- source of bug? */
return 0;
}
The bug appears! It's quite difficult to describe in text, so I attached a screenshot at the end.
If I delete the 'source of bug?' getchar();, the bug won't appear.
Yes, and some unexpected underlines as well.
The exact style of the bug is difficult to predict, but I found that using a loop may produce a neat output:
#include <stdio.h>
int main(void)
{
for (;;)
{
printf("漢字漢字漢字"); /* 漢字 means Chinese character */
getchar(); /* <--- source of bug? */
}
return 0;
}
Versions
ConEmu build: 180528 / 180617 x64
OS version: Windows 7 / 10 x64
Used shell version: cmd
Problem description
Hi developer, I used ver. 170910 for a long time. Last month I update to 180528 and found something weird in display Chinese characters. Just now I checked ver. 180617 and it happend again, so I submit this issue here.
I'm not sure whether this bug exists in previous version like ver. 180503.
Steps to reproduce
getchar();
, the bug won't appear.Additional files
screenshots
The text was updated successfully, but these errors were encountered: