We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 772f0b4 commit f882d53Copy full SHA for f882d53
1 file changed
unix/main.c
@@ -502,7 +502,7 @@ int main(int argc, char **argv) {
502
} else if (strcmp(argv[a], "-v") == 0) {
503
mp_verbose_flag++;
504
} else if (strncmp(argv[a], "-O", 2) == 0) {
505
- if (isdigit(argv[a][2])) {
+ if (unichar_isdigit(argv[a][2])) {
506
MP_STATE_VM(mp_optimise_value) = argv[a][2] & 0xf;
507
} else {
508
MP_STATE_VM(mp_optimise_value) = 0;
0 commit comments