summaryrefslogtreecommitdiff
path: root/utils/h2ph.PL
diff options
context:
space:
mode:
authorSAKAI Kiyotaka <ksakai@netwk.ntt-at.co.jp>1998-09-10 18:59:33 +0900
committerGurusamy Sarathy <gsar@cpan.org>1998-09-23 10:09:23 +0000
commitd3e00f1c98d622b55bdce2e46f0d1c0024daafe4 (patch)
tree830db436ae0da6c6cd13633df3c78fdac21d1681 /utils/h2ph.PL
parent54fbcc6e8ef8d379545ca2bc110f2f19a7c73715 (diff)
downloadperl-d3e00f1c98d622b55bdce2e46f0d1c0024daafe4.tar.gz
fix h2ph handling of C<#error "foo">
Message-Id: <19980910095933N.ksakai@netwk.ntt-at.co.jp> Subject: [5.005_02] h2ph problem p4raw-id: //depot/perl@1845
Diffstat (limited to 'utils/h2ph.PL')
-rw-r--r--utils/h2ph.PL2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/h2ph.PL b/utils/h2ph.PL
index 731360e7fa..42a60b2d19 100644
--- a/utils/h2ph.PL
+++ b/utils/h2ph.PL
@@ -230,6 +230,8 @@ while (defined ($file = next_file())) {
print OUT $t,"}\n";
} elsif(/^undef\s+(\w+)/) {
print OUT $t, "undef(&$1) if defined(&$1);\n";
+ } elsif(/^error\s+(".*")/) {
+ print OUT $t, "die($1);\n";
} elsif(/^error\s+(.*)/) {
print OUT $t, "die(\"", quotemeta($1), "\");\n";
} elsif(/^warning\s+(.*)/) {