Skip to content

Commit 3acbfdb

Browse files
committed
FIX: not using the new map syntax because old prebuild versions does not handle it yet
1 parent c47108f commit 3acbfdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mezz/codec-html-entities.reb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Rebol [
1616
}
1717
]
1818

19-
html-entities: #(
19+
html-entities: #[map! [
2020
;@@ https://eastmanreference.com/list-of-html-entity-names-and-numbers
2121
;-- Punctuation, programming, and other common symbols
2222
"lt" #"^(3C)" ; 60 Open tag
@@ -270,7 +270,7 @@ html-entities: #(
270270
"zwj" #"^(200D)" ; 8205 Zero width joiner
271271
"lrm" #"^(200E)" ; 8206 Left-to-right mark
272272
"rlm" #"^(200F)" ; 8207 Right-to-left mark
273-
)
273+
]]
274274

275275
any-except-&: complement charset "&"
276276
alphanum: charset [#"0" - #"9" #"a" - #"z" #"A" - #"Z"]

0 commit comments

Comments
 (0)