rename empty_tag config option to empty_tag_marker

it was conflicting with empty_tag_color. since empty_tag_color
contains empty_tag, ncmpcpp was parsing wrong variable if the
first variable was before the second one in configuration file.
This commit is contained in:
Andrzej Rybczak
2009-08-26 17:00:46 +02:00
parent e322e721f3
commit 6f88f9aeb2
3 changed files with 3 additions and 3 deletions

View File

@@ -817,7 +817,7 @@ void ReadConfiguration(ncmpcpp_config &conf)
conf.song_window_title_format += '}';
}
}
else if (cl.find("empty_tag") != std::string::npos)
else if (cl.find("empty_tag_marker") != std::string::npos)
{
conf.empty_tag = v; // is this case empty string is allowed
}