* Added support for 0o octal radix prefix on number literals in the preprocessor
* The single parameter version of !if now also supports floats * Preprocessor now warns when invalid floating point numbers are used in math operations git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6633 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
ce249976f7
commit
d7ac356d0e
4 changed files with 15 additions and 3 deletions
|
@ -2,7 +2,9 @@
|
|||
|
||||
\S0{compcommands} Compiler Utility Commands
|
||||
|
||||
These commands are similar to the C preprocessor in terms of purpose and functionality. They allow file inclusion, conditional compilation, executable header packing, and processes execution during the build process. Note: none of these commands allow use of variables.
|
||||
These commands are similar to the C preprocessor in terms of purpose and functionality. They allow file inclusion, conditional compilation, executable header packing, and processes execution during the build process. Note: None of these commands allow the use of variables.
|
||||
|
||||
Number literals support the \c{0b}, \c{0o}, \c{0n} and \c{0x} radix prefixes (base 2, 8, 10 and 16 respectively). Note: The deprecated plain \c{0} octal prefix is also supported in some places but its usage is discouraged.
|
||||
|
||||
\S1{include} !include
|
||||
|
||||
|
|
|
@ -20,6 +20,12 @@ Released on ? ?th, 201?
|
|||
|
||||
\b !system and !execute now provide a empty StdIn pipe to work around bugs in some Windows utilities
|
||||
|
||||
\b Added support for 0o octal radix prefix on number literals in the preprocessor
|
||||
|
||||
\b The single parameter version of !if now also supports floats
|
||||
|
||||
\b Preprocessor now warns when invalid floating point numbers are used in math operations
|
||||
|
||||
\b MakeNSISW now uses WinInet when checking for updates
|
||||
|
||||
\S2{} Translations
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue