!insertmacro allows macro recursion (RFE #497)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6511 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2014-07-04 23:27:04 +00:00
parent 7ee1a114a9
commit 0a8c72c950
4 changed files with 38 additions and 45 deletions

View file

@ -107,7 +107,8 @@ class CEXEBuild {
~CEXEBuild();
enum {
MAX_LINELENGTH = 16384 // NSI/NSH line limit, in TCHARs (including \0)
MAX_LINELENGTH = 16384, // NSI/NSH line limit, in TCHARs (including \0)
MAX_MACRORECURSION = 50
};
void warning(const TCHAR *s, ...); // to add a warning to the compiler's warning list.