1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-01-01 06:29:53 +00:00

Fix PCW encoding

This commit is contained in:
Karol Stasiak 2020-07-13 23:09:06 +02:00
parent 632bb0c994
commit 0b948f801d
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ EOT=00
21-3f=!"#$%&'()*+,-./0123456789:;<=>? 21-3f=!"#$%&'()*+,-./0123456789:;<=>?
40-5f=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ 40-5f=@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_
60-7e=`abcdefghijklmnopqrstuvwxyz{|}~ 60-7e=`abcdefghijklmnopqrstuvwxyz{|}~
80-8f=◾╧╟╚╤║╔╠╢╝═╩╗╣╦╬ 80-8f=◾╧╟╚╤║╔╠╢╝═╩╗╣╦╬
90-9f=·╵╶└╷│┌├╴┘─┴┐┤┬┼ 90-9f=·╵╶└╷│┌├╴┘─┴┐┤┬┼
a0-af=ªº°£©¶§†¼½¾«»₧¿¡ a0-af=ªº°£©¶§†¼½¾«»₧¿¡
b0-bf=ƒ¢¨´ˆ‰⅛⅜⅝⅞ß○•¥®™ b0-bf=ƒ¢¨´ˆ‰⅛⅜⅝⅞ß○•¥®™

View File

@ -43,6 +43,7 @@ class EncodingSanitySuite extends FunSuite with Matchers {
case _ => case _ =>
} }
log.assertNoErrors("No errors")
} }
} }