diff --git a/bin/bc b/bin/bc index bd86ef6e..bff8d7b1 100755 --- a/bin/bc +++ b/bin/bc @@ -2224,13 +2224,10 @@ sub yylex $IDENT; } - } elsif (($char eq '*' && $line =~ s/^\*=//) or - ($char eq '^' && $line =~ s/=//)) { + } elsif ($char eq '^' && $line =~ s/=//) { $EXP_EQ; - } elsif (($char eq '*' && $line =~ s/^\*//) or - ($char eq '^')) { + } elsif ($char eq '^') { $EXP; - } elsif ($char eq '|' && $line =~ s/^\|//) { $O_O; } elsif ($char eq '&' && $line =~ s/^&//) {