зеркало из https://github.com/mozilla/pjs.git
Bug 289914 - ignore #comment lines in chrome manifests r=shaver a=chofmann
This commit is contained in:
Родитель
4259564bda
Коммит
ce238ba6a2
|
@ -1784,6 +1784,9 @@ nsChromeRegistry::ProcessManifestBuffer(char *buf, PRInt32 length,
|
|||
while (nsnull != (token = nsCRT::strtok(newline, kNewlines, &newline))) {
|
||||
++line;
|
||||
|
||||
if (*token == '#') // ignore lines that begin with # as comments
|
||||
continue;
|
||||
|
||||
char *whitespace = token;
|
||||
token = nsCRT::strtok(whitespace, kWhitespace, &whitespace);
|
||||
if (!token) continue;
|
||||
|
|
Загрузка…
Ссылка в новой задаче