From 433c6664970f1b86c0009335250cd92e65cac7d7 Mon Sep 17 00:00:00 2001 From: Vladimir Lebedev Date: Sun, 11 Feb 2024 13:05:59 +0700 Subject: [PATCH] Improve SETCONTARGS_N doc --- cp0.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cp0.json b/cp0.json index f98ae65..5eccb53 100644 --- a/cp0.json +++ b/cp0.json @@ -25460,7 +25460,7 @@ "mnemonic": "SETCONTARGS_N", "doc": { "category": "cont_stack", - "description": "Similar to `[r] -1 SETCONTARGS`, but sets `c.nargs` to the final size of the stack of `c'` plus `n`. In other words, transforms `c` into a _closure_ or a _partially applied function_, with `0 <= n <= 14` arguments missing.", + "description": "Pushes `0 <= r <= 15` values `x_1...x_r` into the stack of (a copy of) the continuation `c`, starting with `x_1`. When `n` is 15 (-1 in Fift notation), does nothing with `c.nargs`. For `0 <= n <= 14`, sets `c.nargs` to the final size of the stack of `c'` plus `n`. In other words, transforms `c` into a _closure_ or a _partially applied function_, with `0 <= n <= 14` arguments missing.", "gas": "26+s\u0432\u0402\u045c", "fift": "[r] [n] SETCONTARGS" },