Bug 469076: handle -silent in default cmdline handler r=bsmedberg

This commit is contained in:
Taras Glek 2008-12-18 12:05:46 -08:00
Родитель 828c83616a
Коммит 7376ca7e6a
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -114,6 +114,10 @@ var nsDefaultCLH = {
dump(out + "\n");
Components.utils.reportError(out);
}
if (cmdLine.handleFlag("silent", false)) {
cmdLine.preventDefault = true;
}
if (cmdLine.preventDefault)
return;