applied patch #1225167 - halibut fails on macro usage at beginning of line

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4121 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-06-21 22:18:15 +00:00
parent dbb2204c73
commit 05d2a3a979

View file

@ -731,6 +731,12 @@ static void read_file(paragraph *** ret, input * in, indexdata * idx)
continue;
}
while (t.type == tok_cmd && macrolookup(macros, in, t.text, &t.pos))
{
dtor(t), t = get_token(in);
}
/*
* This token begins a paragraph. See if it's one of the
* special commands that define a paragraph type.