Reference/!undef: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Created page with "=!undef= gflag Removes an item from the global define list. Note that ${SYMBOL} where SYMBOL is undefined will be translated to "${SYMBOL}". <highlight-nsis>!define SOMETH...")
 
mNo edit summary
Line 7: Line 7:
<highlight-nsis>!define SOMETHING
<highlight-nsis>!define SOMETHING
!undef SOMETHING</highlight-nsis>
!undef SOMETHING</highlight-nsis>
''Command introduced with NSIS v1.51''

Revision as of 20:30, 4 June 2013

!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