Take the right number of things off of the stack.
This commit is contained in:
parent
bcf6abc50d
commit
4821ea0ee2
|
|
@ -2033,7 +2033,7 @@ def dipdd(stack, expr, dictionary):
|
||||||
... Q y x z
|
... Q y x z
|
||||||
|
|
||||||
'''
|
'''
|
||||||
quote, x, y, z, stack = get_n_items(3, stack)
|
quote, x, y, z, stack = get_n_items(4, stack)
|
||||||
isnt_stack(quote)
|
isnt_stack(quote)
|
||||||
expr = push_quote((z, (y, (x, ()))), expr)
|
expr = push_quote((z, (y, (x, ()))), expr)
|
||||||
expr = push_quote(quote, expr)
|
expr = push_quote(quote, expr)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue