fixed bug #1554178 - Compiler ignores next line after comment line ends with \

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4876 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-01-24 13:24:28 +00:00
parent f47023d9df
commit 94fc6745fa
3 changed files with 21 additions and 1 deletions

View file

@ -23,6 +23,7 @@ class LineParser {
LineParser(bool bCommentBlock);
virtual ~LineParser();
bool inComment();
bool InCommentBlock();
int parse(char *line, int ignore_escaping=0); // returns -1 on error
int getnumtokens();
@ -40,6 +41,7 @@ class LineParser {
int m_eat;
int m_nt;
bool m_bCommentBlock;
bool m_incomment;
char **m_tokens;
};
#endif//_LINEPARSE_H_