diff options
author | Eduardo Julian | 2021-08-09 23:02:01 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-08-09 23:02:01 -0400 |
commit | 464b6e8f5e6c62f58fa8c7ff61ab2ad215e98bd1 (patch) | |
tree | 1ae9d95956cee4251cd29a3e24c246c4360d567d /stdlib/source/library/lux/data/text/unicode/block.lux | |
parent | f621a133e6e0a516c0586270fea8eaffb4829d82 (diff) |
Improved single-line comment syntax (from "##" to "...").
Diffstat (limited to 'stdlib/source/library/lux/data/text/unicode/block.lux')
-rw-r--r-- | stdlib/source/library/lux/data/text/unicode/block.lux | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/stdlib/source/library/lux/data/text/unicode/block.lux b/stdlib/source/library/lux/data/text/unicode/block.lux index e1a4a4de6..e9c1298fe 100644 --- a/stdlib/source/library/lux/data/text/unicode/block.lux +++ b/stdlib/source/library/lux/data/text/unicode/block.lux @@ -81,7 +81,7 @@ (..end value)))) (syntax: (block_name {name <code>.local_identifier}) - (in (list (code.text (///.replace_all "_" " " name))))) + (in (list (code.text (///.replaced "_" " " name))))) (template [<name> <start> <end>] [(with_expansions [<block_name> (..block_name <name>) @@ -93,7 +93,7 @@ end (hex <end>)] (..block start (n.- start end)))))] - ## Normal blocks + ... Normal blocks [basic_latin "0000" "007F"] [latin_1_supplement "00A0" "00FF"] [latin_extended_a "0100" "017F"] @@ -199,25 +199,25 @@ [arabic_presentation_forms_b "FE70" "FEFF"] [halfwidth_and_fullwidth_forms "FF00" "FFEF"] [specials "FFF0" "FFFF"] - ## [linear_b_syllabary "10000" "1007F"] - ## [linear_b_ideograms "10080" "100FF"] - ## [aegean_numbers "10100" "1013F"] - ## [old_italic "10300" "1032F"] - ## [gothic "10330" "1034F"] - ## [ugaritic "10380" "1039F"] - ## [deseret "10400" "1044F"] - ## [shavian "10450" "1047F"] - ## [osmanya "10480" "104AF"] - ## [cypriot_syllabary "10800" "1083F"] - ## [byzantine_musical_symbols "1D000" "1D0FF"] - ## [musical_symbols "1D100" "1D1FF"] - ## [tai_xuan_jing_symbols "1D300" "1D35F"] - ## [mathematical_alphanumeric_symbols "1D400" "1D7FF"] - ## [cjk_unified_ideographs_extension_b "20000" "2A6DF"] - ## [cjk_compatibility_ideographs_supplement "2F800" "2FA1F"] - ## [tags "E0000" "E007F"] + ... [linear_b_syllabary "10000" "1007F"] + ... [linear_b_ideograms "10080" "100FF"] + ... [aegean_numbers "10100" "1013F"] + ... [old_italic "10300" "1032F"] + ... [gothic "10330" "1034F"] + ... [ugaritic "10380" "1039F"] + ... [deseret "10400" "1044F"] + ... [shavian "10450" "1047F"] + ... [osmanya "10480" "104AF"] + ... [cypriot_syllabary "10800" "1083F"] + ... [byzantine_musical_symbols "1D000" "1D0FF"] + ... [musical_symbols "1D100" "1D1FF"] + ... [tai_xuan_jing_symbols "1D300" "1D35F"] + ... [mathematical_alphanumeric_symbols "1D400" "1D7FF"] + ... [cjk_unified_ideographs_extension_b "20000" "2A6DF"] + ... [cjk_compatibility_ideographs_supplement "2F800" "2FA1F"] + ... [tags "E0000" "E007F"] - ## Specialized blocks + ... Specialized blocks [basic_latin/decimal "0030" "0039"] [basic_latin/upper "0041" "005A"] [basic_latin/lower "0061" "007A"] |