Reference/!undef: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (<code>) |
(+/noerrors) |
||
Line 1: | Line 1: | ||
=!undef= | =!undef= | ||
gflag | [/noerrors] gflag | ||
Removes an item from the global define list. Note that <code>${SYMBOL}</code> where <code>SYMBOL</code> is undefined will be translated to <code>"${SYMBOL}"</code>. | Removes an item from the global define list. Note that <code>${SYMBOL}</code> where <code>SYMBOL</code> is undefined will be translated to <code>"${SYMBOL}"</code>. | ||
Line 8: | Line 8: | ||
!undef SOMETHING</highlight-nsis> | !undef SOMETHING</highlight-nsis> | ||
''Command introduced with NSIS v1.51'' | ''Command introduced with NSIS v1.51. /noerrors switch added in v3.04'' |
Latest revision as of 23:40, 2 November 2018
!undef
[/noerrors] gflag
Removes an item from the global define list. Note that ${SYMBOL}
where SYMBOL
is undefined will be translated to "${SYMBOL}"
.
!define SOMETHING !undef SOMETHING
Command introduced with NSIS v1.51. /noerrors switch added in v3.04