Final fix for 8-bit encodings
parent
88baf7c3b7
commit
fae69bd092
|
@ -37,10 +37,11 @@ HELP: <encoder-duplex> ( stream-in stream-out encoding -- duplex )
|
||||||
|
|
||||||
ARTICLE: "encodings-descriptors" "Encoding descriptors"
|
ARTICLE: "encodings-descriptors" "Encoding descriptors"
|
||||||
"An encoding descriptor is something which can be used for input or output streams to encode or decode files. It must conform to the " { $link "encodings-protocol" } ". Encodings which you can use are defined in the following vocabularies:"
|
"An encoding descriptor is something which can be used for input or output streams to encode or decode files. It must conform to the " { $link "encodings-protocol" } ". Encodings which you can use are defined in the following vocabularies:"
|
||||||
$nl { $vocab-link "io.encodings.utf8" }
|
{ $vocab-subsection "io.encodings.utf8" }
|
||||||
$nl { $vocab-link "io.encodings.ascii" }
|
{ $vocab-subsection "io.encodings.ascii" }
|
||||||
$nl { $vocab-link "io.encodings.binary" }
|
{ $vocab-subsection "io.encodings.8-bit" }
|
||||||
$nl { $vocab-link "io.encodings.utf16" } ;
|
{ $vocab-subsection "io.encodings.binary" }
|
||||||
|
{ $vocab-subsection "io.encodings.utf16" } ;
|
||||||
|
|
||||||
ARTICLE: "encodings-protocol" "Encoding protocol"
|
ARTICLE: "encodings-protocol" "Encoding protocol"
|
||||||
"An encoding descriptor must implement the following methods. The methods are implemented on tuple classes by instantiating the class and calling the method again."
|
"An encoding descriptor must implement the following methods. The methods are implemented on tuple classes by instantiating the class and calling the method again."
|
||||||
|
|
|
@ -271,5 +271,3 @@
|
||||||
0xFD 0x00D9 #LATIN CAPITAL LETTER U WITH GRAVE
|
0xFD 0x00D9 #LATIN CAPITAL LETTER U WITH GRAVE
|
||||||
0xFE 0x00DA #LATIN CAPITAL LETTER U WITH ACUTE
|
0xFE 0x00DA #LATIN CAPITAL LETTER U WITH ACUTE
|
||||||
0xFF 0x009F #CONTROL
|
0xFF 0x009F #CONTROL
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue