Fix thousand separators again.
[INTERPRETER] * BUG: Fix thousand separators again.
This commit is contained in:
parent
acf401ba2d
commit
7b501542a1
@ -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…
x
Reference in New Issue
Block a user