# HG changeset patch # User Leonard Ritter # Date 1747218012 -7200 # Wed May 14 12:20:12 2025 +0200 # Branch based # Node ID da81757b0d1a28f1bf6dba188f59bd705845e5ec # Parent 3e871fffa89bd138af714fd5788098264d7b64e9 * print: don't escape UTF-8 characters diff --git a/lib/scopes/print.sc b/lib/scopes/print.sc --- a/lib/scopes/print.sc +++ b/lib/scopes/print.sc @@ -79,7 +79,7 @@ default &"" inline char-printable? (c) - (c >= 32:char) and (c < 127:char) + (c as u8 >= 32:char) #and (c < 127:char) inline control-char-printable? (ch) or diff --git a/testing/logo.sc b/testing/logo.sc --- a/testing/logo.sc +++ b/testing/logo.sc @@ -136,6 +136,6 @@ print smallone; -print +#print /quote smallone; \ No newline at end of file