Features list updated, some links added and command parameters are now shown alone with a light background behind them.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1476 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-10-26 19:23:10 +00:00
parent 2bb6c55b0f
commit 41a03f754c
24 changed files with 497 additions and 464 deletions

View file

@ -2,18 +2,18 @@
\H{Exch} Exch
Exch \e{[user_var] | stack_index}
\c [user_var] | stack_index
When no parmater is specified, exchanges the top two elements of the stack. When a parameter is specified and is a user variable, exchanges the top element of the stack with the parameter. When a parameter is specified and is a positive integer, the parameter specifies which item on the stack that the top of the stack is swapped with. If there are not enough items on the stack to accomplish the exchange, a fatal error will occur (to help you debug your code :).
When no parmater is specified, exchanges the top two elements of the stack. When a parameter is specified and is a user variable, exchanges the top element of the stack with the parameter. When a parameter is specified and is a positive integer, the parameter specifies which item on the stack that the top of the stack is swapped with. If there are not enough items on the stack to accomplish the exchange, a fatal error will occur (to help you debug your code :).
\H{Pop} Pop
Pop \e{user_var(out)}
\c 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.
Pops a string off of the stack into user variable $x. If the stack is empty, the error flag will be set.
\H{Push} Push
Push \e{string}
\c string
Pushes a string onto the stack. The string can then be Popped off of the stack.
Pushes a string onto the stack. The string can then be Popped off of the stack.