From 5fbadb7e972448cc378f990a679930999ff62858 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 29 Mar 2003 11:05:26 +0000 Subject: [PATCH] or not and git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2389 212acab6-be3b-0410-9dea-997c60f758d6 --- Include/Sections.nsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/Sections.nsh b/Include/Sections.nsh index b033831d..24e45dc9 100644 --- a/Include/Sections.nsh +++ b/Include/Sections.nsh @@ -19,7 +19,7 @@ !macro SelectSection SECTION Push $0 SectionGetFlags "${SECTION}" $0 - IntOp $0 $0 & ${SF_SELECTED} + IntOp $0 $0 | ${SF_SELECTED} SectionSetFlags "${SECTION}" $0 Pop $0 !macroend