fixed a bug that caused escaping not to be ignored on extended !define lines

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3408 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-01-24 16:32:17 +00:00
parent ec3429483a
commit 8e47f0b88a

View file

@ -251,7 +251,7 @@ int CEXEBuild::doParse(const char *str)
}
else last_line_had_slash = 0;
res=line.parse((char*)m_linebuild.get(),!strnicmp(str,"!define",7));
res=line.parse((char*)m_linebuild.get(),!strnicmp((char*)m_linebuild.get(),"!define",7));
inside_comment = line.InCommentBlock();