renamed SubSection to SectionGroup
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3852 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
fe03bb3d47
commit
f2cba8c2cb
15 changed files with 66 additions and 57 deletions
|
@ -2979,7 +2979,9 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
|
|||
SCRIPT_MSG("\n");
|
||||
}
|
||||
return PS_OK;
|
||||
case TOK_SECTIONGROUPEND:
|
||||
case TOK_SUBSECTIONEND:
|
||||
case TOK_SECTIONGROUP:
|
||||
case TOK_SUBSECTION:
|
||||
{
|
||||
char buf[1024];
|
||||
|
@ -2990,7 +2992,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
|
|||
a++;
|
||||
}
|
||||
wsprintf(buf,"-%s",line.gettoken_str(a));
|
||||
if (which_token == TOK_SUBSECTION)
|
||||
if (which_token == TOK_SECTIONGROUP || which_token == TOK_SUBSECTION)
|
||||
{
|
||||
char *s = line.gettoken_str(a);
|
||||
if (!s[0] || (!strcmpi(s, "un.") && !s[3]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue