From 469b171e5793422a4dbd27f4f2fab8a261c9ccf9 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 10 Feb 2022 03:34:29 -0400 Subject: Finishing the meta-compiler [Part 2] --- stdlib/source/library/lux.lux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stdlib/source/library/lux.lux') diff --git a/stdlib/source/library/lux.lux b/stdlib/source/library/lux.lux index e6a3e5e6f..7ddfa427f 100644 --- a/stdlib/source/library/lux.lux +++ b/stdlib/source/library/lux.lux @@ -5128,10 +5128,10 @@ (def: (recursive_type g!self g!dummy name body) (-> Code Code Text Code Code) - (` ((.All ((~ g!self) (~ g!dummy)) - (~ (let$ (local_symbol$ name) (` {.#Apply (..Primitive "") (~ g!self)}) - body))) - (..Primitive "")))) + (` {.#Apply (..Primitive "") + (.All ((~ g!self) (~ g!dummy)) + (~ (let$ (local_symbol$ name) (` {.#Apply (..Primitive "") (~ g!self)}) + body)))})) (macro: .public (Rec tokens) (case tokens -- cgit v1.2.3