mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
replace isupper to g_ascii_isupper
This commit is contained in:
parent
87a891a54c
commit
bfa9c961ca
@ -1685,7 +1685,7 @@ my_type_of (int c)
|
|||||||
return 2;
|
return 2;
|
||||||
return 0x80000000UL;
|
return 0x80000000UL;
|
||||||
}
|
}
|
||||||
if (isupper (c))
|
if (g_ascii_isupper ((gchar) c))
|
||||||
c = 'A';
|
c = 'A';
|
||||||
else if (g_ascii_islower ((gchar) c))
|
else if (g_ascii_islower ((gchar) c))
|
||||||
c = 'a';
|
c = 'a';
|
||||||
|
Loading…
Reference in New Issue
Block a user