mirror of
https://github.com/notwa/lips
synced 2024-11-14 10:09:03 -08:00
fix backwards relative labels
This commit is contained in:
parent
a9b702114a
commit
5c91e09151
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ function Preproc:process(tokens)
|
|||
if label:sub(1, 1) == '+' then
|
||||
insert(plus_labels, rl)
|
||||
elseif label:sub(1, 1) == '-' then
|
||||
insert(minus_labels, rl)
|
||||
insert(minus_labels, 1, rl)
|
||||
else
|
||||
error('Internal Error: unexpected token for relative label')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue