Does elisp have a way to jump to (goto) labels in the code, ala common lisp's go?
(tagbody
(setq val 2)
(go lp)
(incf val 3)
lp (incf val 4)) => NIL
val => 6
PS: This is a question about control flow, not jumping to locations in files.