1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-25 13:55:34 -05:00

Undo last commit, seems to be unneeded

This commit is contained in:
Dave Davenport 2015-11-22 21:10:39 +01:00
parent 5e05472619
commit 65dd080154

View file

@ -2322,14 +2322,11 @@ int main ( int argc, char *argv[] )
display_str = getenv ( "DISPLAY" );
find_arg_str ( "-display", &display_str );
if ( setlocale ( LC_CTYPE , "" ) == NULL ) {
fprintf ( stderr, "Failed to set locale for character classification.\n" );
return EXIT_FAILURE;
}
if ( setlocale ( LC_COLLATE, "" ) == NULL ) {
fprintf ( stderr, "Failed to set locale for collating.\n" );
if ( setlocale ( LC_ALL, "" ) == NULL ) {
fprintf ( stderr, "Failed to set locale.\n" );
return EXIT_FAILURE;
}
if ( !XSupportsLocale () ) {
fprintf ( stderr, "X11 does not support locales\n" );
return 11;