do not add //TRANSLIT to encoding defined in config file

This commit is contained in:
Andrzej Rybczak
2010-01-30 19:42:15 +01:00
parent 4bb1fdb40d
commit 1b6acb3372

View File

@@ -687,7 +687,7 @@ void ReadConfiguration(ncmpcpp_config &conf)
else if (cl.find("system_encoding") != std::string::npos) else if (cl.find("system_encoding") != std::string::npos)
{ {
if (!v.empty()) if (!v.empty())
conf.system_encoding = v + "//TRANSLIT"; conf.system_encoding = v;
} }
else if (cl.find("execute_on_song_change") != std::string::npos) else if (cl.find("execute_on_song_change") != std::string::npos)
{ {