diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-19 02:22:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-10-19 02:22:40 +0000 |
commit | 6e1c9671e8cfa857af192c614a912a1db14856a4 (patch) | |
tree | e37de2c6b9d31fcab04810f85d934934208c0c8a /ext | |
parent | 60ff48325271c10565ac39447893911225a2a381 (diff) | |
download | perl-6e1c9671e8cfa857af192c614a912a1db14856a4.tar.gz |
Fix of sorts for bug id 20000901.092. There seems to be no trace
of a 'pmshort' anywhere in the B, so the offending line was simply
removed.
p4raw-id: //depot/perl@7367
Diffstat (limited to 'ext')
-rw-r--r-- | ext/B/B/Debug.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/B/B/Debug.pm b/ext/B/B/Debug.pm index 3e212e27bc..1327591e7f 100644 --- a/ext/B/B/Debug.pm +++ b/ext/B/B/Debug.pm @@ -53,7 +53,6 @@ sub B::PMOP::debug { printf "\top_pmnext\t0x%x\n", ${$op->pmnext}; printf "\top_pmregexp->precomp\t%s\n", cstring($op->precomp); printf "\top_pmflags\t0x%x\n", $op->pmflags; - $op->pmshort->debug; $op->pmreplroot->debug; } |