From 2680b1e84876643ffe8781556665b7e94544f778 Mon Sep 17 00:00:00 2001 From: Yogthos Date: Mon, 8 Jun 2026 11:14:45 -0400 Subject: [PATCH] Step 5 fix: add apply to core-renames core-trampoline calls apply internally. In compile mode, apply must be in core-renames for the compiler to emit a direct call to core-apply. Without this, apply resolves to nil at compile time. --- src/jolt/compiler.janet | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jolt/compiler.janet b/src/jolt/compiler.janet index 0c19a30..7af717a 100644 --- a/src/jolt/compiler.janet +++ b/src/jolt/compiler.janet @@ -98,6 +98,7 @@ "drop-while" "core-drop-while" "nth" "core-nth" "mapcat" "core-mapcat" + "apply" "core-apply" "trampoline" "core-trampoline" "list" "core-list" "name" "core-name"