Reference/!undef: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
mNo edit summary
(+/noerrors)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
=!undef=
=!undef=


  gflag
  [/noerrors] gflag


Removes an item from the global define list. Note that ${SYMBOL} where SYMBOL is undefined will be translated to "${SYMBOL}".
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>.


<highlight-nsis>!define SOMETHING
<highlight-nsis>!define SOMETHING
!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