In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/8f945cf03946ea4a984c7ecffa2c0fb4839c6f24?hp=c496ca58b935925a317fd99b29b48db763c1110c>
- Log ----------------------------------------------------------------- commit 8f945cf03946ea4a984c7ecffa2c0fb4839c6f24 Author: Yves Orton <demer...@gmail.com> Date: Wed Sep 17 16:14:01 2014 +0200 silence diagnostics in regen/regcomp.pl for now ----------------------------------------------------------------------- Summary of changes: regen/regcomp.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regen/regcomp.pl b/regen/regcomp.pl index 7be623c..b90efc7 100644 --- a/regen/regcomp.pl +++ b/regen/regcomp.pl @@ -55,8 +55,8 @@ while (<DESC>) { = split /[,\s]\s*/, $desc; if (!defined $seen_op{$type[$ind]} and !defined $type_alias{$type[$ind]}) { - warn "Regop type '$type[$ind]' from regcomp.sym line $. is not an existing regop, and will be aliased to $name[$ind]\n" - if -t STDERR; + #warn "Regop type '$type[$ind]' from regcomp.sym line $. is not an existing regop, and will be aliased to $name[$ind]\n" + # if -t STDERR; $type_alias{$type[$ind]}= $name[$ind]; } -- Perl5 Master Repository