From 8e47f0b88a0c2b67d69409addaf60073ed120dd0 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 24 Jan 2004 16:32:17 +0000 Subject: [PATCH] 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 --- Source/script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/script.cpp b/Source/script.cpp index d5a6e699..409be89b 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -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();