Bug 289914 - ignore #comment lines in chrome manifests r=shaver a=chofmann

This commit is contained in:
bsmedberg%covad.net 2005-04-11 15:31:58 +00:00
Родитель 4259564bda
Коммит ce238ba6a2
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -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;