Keep logicaly bind lines together

This commit is contained in:
Ilia Rostovtsev
2021-06-20 21:06:52 +03:00
parent e9ade1591c
commit 63db49aeba

View File

@@ -5013,13 +5013,13 @@ $current_theme = $current_themes[0];
@theme_root_directories = map { "$root_directory/$_" } @current_themes;
$theme_root_directory = $theme_root_directories[0];
@theme_configs = ( );
my $theme_tconfig = "$config_directory/$current_theme/config";
foreach my $troot (@theme_root_directories) {
my %onetconfig;
&read_file_cached("$troot/config", \%onetconfig);
&read_file_cached("$troot/config", \%tconfig);
push(@theme_configs, \%onetconfig);
}
my $theme_tconfig = "$config_directory/$current_theme/config";
if (-r $theme_tconfig) {
&read_file_cached($theme_tconfig, \%tconfig);
}