mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-17 18:12:01 +01:00
fix for two-byte non-7-bit ascii chars
This commit is contained in:
parent
c56192f4f1
commit
75d2f37d56
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ sub WriteMapFile($$$) {
|
||||||
} elsif ( $str =~ /\"(.+)\"/ ) {
|
} elsif ( $str =~ /\"(.+)\"/ ) {
|
||||||
print $fhr pack($packStr, $specialCount++ );
|
print $fhr pack($packStr, $specialCount++ );
|
||||||
} elsif ( $str =~ /(\d+)/ ) {
|
} elsif ( $str =~ /(\d+)/ ) {
|
||||||
print $fhr pack( $packStr, chr($1) );
|
print $fhr pack( $packStr, $1 );
|
||||||
} else {
|
} else {
|
||||||
die "WriteMapFile: unrecognized face format $str";
|
die "WriteMapFile: unrecognized face format $str";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue