Added !pragma warning (patch #267)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6852 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2017-04-25 13:09:41 +00:00
parent 1b11115193
commit c8370fd064
13 changed files with 252 additions and 105 deletions

View file

@ -173,6 +173,16 @@ This command will issue a warning to the script compiler. You can also add a mes
\c !warning "using dangerous stuff"
\c !endif
\S1{pragma} !pragma
\c warning <enable|disable|default> code
\c warning <push|pop>
The pragma commands allows you to change compiler features and behavior.
\c !pragma warning disable 9000 ; Disable warning about using "Setup.exe" as the name
\c OutFile "Setup.exe"
\S1{verbose} !verbose
\c level | push | pop

View file

@ -12,6 +12,8 @@ Released on ? ?th, 2017
\b Added \R{writeregmultistr}{WriteRegMultiStr} (\W{http://sf.net/p/nsis/feature-requests/382}{RFE #382}, \W{http://sf.net/p/nsis/patches/219}{patch #219})
\b Added \R{pragma}{!pragma warning} (\W{http://sf.net/p/nsis/patches/267}{patch #267})
\S2{} Minor Changes
\b MultiUser now supports $ProgramFiles64 (\W{http://sf.net/p/nsis/bugs/843}{bug #843})