Reference/!undef: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
mNo edit summary
m (<code>)
Line 3: Line 3:
  gflag
  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

Revision as of 13:34, 12 December 2017

!undef

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