no message

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@634 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-02 20:11:36 +00:00
parent 18d56c60ce
commit c97a1b79c9
3 changed files with 83 additions and 54 deletions

View file

@ -1215,7 +1215,19 @@ int CEXEBuild::doCommand(int which_token, LineParser &line, FILE *fp, const char
case TOK_LOADNLF:
{
SCRIPT_MSG("LoadLanguageFile: %s\n", line.gettoken_str(1));
NLF *lang = new NLF(line.gettoken_str(1));
try {
NLF *newLang = new NLF(line.gettoken_str(1));
for (int i = 0; i < build_langs.size(); i++)
if (build_langs[i]->GetLang() == newLang->GetLang()) {
ERROR_MSG("Error: Can't add same language twice!\n");
return PS_ERROR;
}
build_langs.push_back(newLang);
}
catch (exception &err) {
ERROR_MSG("Error while adding language file: %s", err.what());
return PS_ERROR;
}
}
return make_sure_not_in_secorfunc(line.gettoken_str(0));