Reference/Pop: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Created page with "=Pop= user_var(out) Pops a string off of the stack into user variable $x. If the stack is empty, the error flag will be set. <highlight-nsis>Push 1 Pop $0 # = 1</highlight-nsis>")
 
mNo edit summary
 
Line 7: Line 7:
<highlight-nsis>Push 1
<highlight-nsis>Push 1
Pop $0 # = 1</highlight-nsis>
Pop $0 # = 1</highlight-nsis>
''Command introduced with NSIS v1.50''

Latest revision as of 20:30, 4 June 2013

Pop

user_var(out)

Pops a string off of the stack into user variable $x. If the stack is empty, the error flag will be set.

Push 1
Pop $0 # = 1

Command introduced with NSIS v1.50