Skip to content
⌘ NSIS Forum Archive

Multiple labels one after another?

3 posts

Comatose#

Multiple labels one after another?

How do I "end" a label, like you do with FunctionEnd for functions?

I have 3 labels in a row, and they seem to be running each other somehow, resulting in an endless loop when installing.

No endless loop:
  ;XPLAUNCHER: Call originalLauncher
CVL: Call VistaLauncher
;NVISTA: Call notVista
Remove the ; from either NVISTA or XPLAUNCHER, and it goes into a loop again. I'm puzzled.
Afrow UK#
Obviously, unless you have a Goto in there then the next line after the one that was jumped to is going to be executed as well.

Stu