From 1fef36c76e43abddac50405663ebca5d4c4ce4e0 Mon Sep 17 00:00:00 2001 From: Gisle Aas Date: Fri, 7 Aug 1998 01:28:57 +0200 Subject: [PATCH] fix intolerance of SWASHes for blank lines Message-ID: Subject: Re: Re[2]: another joyride begins p4raw-id: //depot/perl@1767 --- lib/utf8_heavy.pl | 64 +++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 33 deletions(-) diff --git a/lib/utf8_heavy.pl b/lib/utf8_heavy.pl index e00db32..71cbb17 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; } } } -- 2.7.4