diff options
author | Gisle Aas <gisle@aas.no> | 1998-08-07 01:28:57 +0200 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-08-08 22:38:25 +0000 |
commit | 1fef36c76e43abddac50405663ebca5d4c4ce4e0 (patch) | |
tree | b68e37ce99f0890cf19752a5409b8e004950b2bd /lib/utf8_heavy.pl | |
parent | 22244bdbbe5e55ece3797eb1c4fed22e93953c4c (diff) | |
download | perl-1fef36c76e43abddac50405663ebca5d4c4ce4e0.tar.gz |
fix intolerance of SWASHes for blank lines
Message-ID: <m3emutkdeu.fsf@furu.g.aas.no>
Subject: Re: Re[2]: another joyride begins
p4raw-id: //depot/perl@1767
Diffstat (limited to 'lib/utf8_heavy.pl')
-rw-r--r-- | lib/utf8_heavy.pl | 64 |
1 files changed, 31 insertions, 33 deletions
diff --git a/lib/utf8_heavy.pl b/lib/utf8_heavy.pl index e00db32aba..71cbb1760b 100644 --- a/lib/utf8_heavy.pl +++ b/lib/utf8_heavy.pl @@ -69,7 +69,7 @@ sub SWASHNEW { my @extras; for my $x ($extras) { pos $x = 0; - while ($x =~ /^([^0-9a-fA-F])(.*)/mg) { + while ($x =~ /^([^0-9a-fA-F\n])(.*)/mg) { my $char = $1; my $name = $2; # print STDERR "$1 => $2\n" if $DEBUG; @@ -99,10 +99,10 @@ sub SWASHNEW { sub SWASHGET { my ($self, $start, $len) = @_; local $^D = 0 if $^D; - print STDERR "SWASHGET @_\n" if $DEBUG; my $type = $self->{TYPE}; my $bits = $self->{BITS}; my $none = $self->{NONE}; + print STDERR "SWASHGET @_ [$type/$bits/$none]\n" if $DEBUG; my $end = $start + $len; my $swatch = ""; my $key; @@ -166,45 +166,43 @@ sub SWASHGET { } for my $x ($self->{EXTRAS}) { pos $x = 0; - while ($x =~ /^([^0-9a-fA-F])(.*)/mg) { + while ($x =~ /^([-+!])(.*)/mg) { my $char = $1; my $name = $2; print STDERR "INDIRECT $1 $2\n" if $DEBUG; - if ($char =~ /^[-+!]$/) { - my $otherbits = $self->{$name}->{BITS}; - croak("SWASHGET size mismatch") if $bits < $otherbits; - my $other = $self->{$name}->SWASHGET($start, $len); - if ($char eq '+') { - if ($bits == 1 and $otherbits == 1) { - $swatch |= $other; - } - else { - for ($key = 0; $key < $len; $key++) { - vec($swatch, $key, $bits) = vec($other, $key, $otherbits); - } - } + my $otherbits = $self->{$name}->{BITS}; + croak("SWASHGET size mismatch") if $bits < $otherbits; + my $other = $self->{$name}->SWASHGET($start, $len); + if ($char eq '+') { + if ($bits == 1 and $otherbits == 1) { + $swatch |= $other; } - elsif ($char eq '!') { - if ($bits == 1 and $otherbits == 1) { - $swatch |= ~$other; + else { + for ($key = 0; $key < $len; $key++) { + vec($swatch, $key, $bits) = vec($other, $key, $otherbits); } - else { - for ($key = 0; $key < $len; $key++) { - if (!vec($other, $key, $otherbits)) { - vec($swatch, $key, $bits) = 1; - } + } + } + elsif ($char eq '!') { + if ($bits == 1 and $otherbits == 1) { + $swatch |= ~$other; + } + else { + for ($key = 0; $key < $len; $key++) { + if (!vec($other, $key, $otherbits)) { + vec($swatch, $key, $bits) = 1; } } } - elsif ($char eq '-') { - if ($bits == 1 and $otherbits == 1) { - $swatch &= ~$other; - } - else { - for ($key = 0; $key < $len; $key++) { - if (vec($other, $key, $otherbits)) { - vec($swatch, $key, $bits) = 0; - } + } + elsif ($char eq '-') { + if ($bits == 1 and $otherbits == 1) { + $swatch &= ~$other; + } + else { + for ($key = 0; $key < $len; $key++) { + if (vec($other, $key, $otherbits)) { + vec($swatch, $key, $bits) = 0; } } } |