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:
parent
ec3429483a
commit
8e47f0b88a
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue