mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-06 20:45:54 +01:00
fix for two-byte non-7-bit ascii chars
This commit is contained in:
parent
082c382f22
commit
775b072af1
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…
Add table
Reference in a new issue