mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +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 =~ /\"(.+)\"/ ) {
|
||||
print $fhr pack($packStr, $specialCount++ );
|
||||
} elsif ( $str =~ /(\d+)/ ) {
|
||||
print $fhr pack( $packStr, chr($1) );
|
||||
print $fhr pack( $packStr, $1 );
|
||||
} else {
|
||||
die "WriteMapFile: unrecognized face format $str";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue