Take the right number of things off of the stack.

This commit is contained in:
sforman 2023-10-08 13:08:34 -07:00
parent bcf6abc50d
commit 4821ea0ee2
1 changed files with 1 additions and 1 deletions

View File

@ -2033,7 +2033,7 @@ def dipdd(stack, expr, dictionary):
... 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)
expr = push_quote((z, (y, (x, ()))), expr)
expr = push_quote(quote, expr)