From 3acbfdb4ec7caa339cbd680fa35016fbd65b35aa Mon Sep 17 00:00:00 2001 From: Oldes Date: Fri, 16 Oct 2020 15:56:49 +0200 Subject: [PATCH] FIX: not using the new map syntax because old prebuild versions does not handle it yet --- src/mezz/codec-html-entities.reb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mezz/codec-html-entities.reb b/src/mezz/codec-html-entities.reb index debaa2eb0b..0efe7c8f63 100644 --- a/src/mezz/codec-html-entities.reb +++ b/src/mezz/codec-html-entities.reb @@ -16,7 +16,7 @@ Rebol [ } ] -html-entities: #( +html-entities: #[map! [ ;@@ https://eastmanreference.com/list-of-html-entity-names-and-numbers ;-- Punctuation, programming, and other common symbols "lt" #"^(3C)" ; 60 Open tag @@ -270,7 +270,7 @@ html-entities: #( "zwj" #"^(200D)" ; 8205 Zero width joiner "lrm" #"^(200E)" ; 8206 Left-to-right mark "rlm" #"^(200F)" ; 8207 Right-to-left mark -) +]] any-except-&: complement charset "&" alphanum: charset [#"0" - #"9" #"a" - #"z" #"A" - #"Z"]