From 63624fd6b7f9f2563898655472025020483d398f Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 9 Nov 2017 14:19:54 -0400 Subject: - Fixed the tests. - Fixed a few bugs. - Can now translate recursion. --- new-luxc/source/luxc/base.lux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'new-luxc/source/luxc/base.lux') diff --git a/new-luxc/source/luxc/base.lux b/new-luxc/source/luxc/base.lux index 7418f8124..580f5593f 100644 --- a/new-luxc/source/luxc/base.lux +++ b/new-luxc/source/luxc/base.lux @@ -229,5 +229,5 @@ (loop [idx (n.dec (text;size name)) output ""] (if (n.= underflow idx) - (text;replace-all "/+" "$" output) + output (recur (n.dec idx) (format (|> (text;nth idx name) maybe;assume normalize-char) output))))) -- cgit v1.2.3