Fix thousand separators again.
[INTERPRETER] * BUG: Fix thousand separators again.
This commit is contained in:
parent
9e0ff90c65
commit
dd53172230
1 changed files with 1 additions and 1 deletions
|
@ -374,7 +374,7 @@ static const char *fix_separator(const char *str)
|
|||
if ((uchar)str[0] == 0xE2 && (uchar)str[1] == 0x80 && (uchar)str[2] == 0xAF && str[3] == 0)
|
||||
return " ";
|
||||
|
||||
return "_";
|
||||
return str[1] ? "_" : str;
|
||||
}
|
||||
|
||||
static void fill_local_info(void)
|
||||
|
|
Loading…
Reference in a new issue