summaryrefslogtreecommitdiff
path: root/ext/B
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-04-06 20:11:52 +0000
committerNicholas Clark <nick@ccl4.org>2008-04-06 20:11:52 +0000
commit4b65a9196162b345e7cbe8a43eca838c2e79e41b (patch)
tree4991882afc4678604942133800e05d40c06d294f /ext/B
parent439cad7f0af0ff91bdf31605de1593fa2b4842c3 (diff)
downloadperl-4b65a9196162b345e7cbe8a43eca838c2e79e41b.tar.gz
Replace all remaining accesses to COP's cop_label with CopLABEL().
p4raw-id: //depot/perl@33653
Diffstat (limited to 'ext/B')
-rw-r--r--ext/B/B.pm2
-rw-r--r--ext/B/B.xs2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm
index a212ae1a7d..5d491b4899 100644
--- a/ext/B/B.pm
+++ b/ext/B/B.pm
@@ -7,7 +7,7 @@
#
package B;
-our $VERSION = '1.19';
+our $VERSION = '1.20';
use XSLoader ();
require Exporter;
diff --git a/ext/B/B.xs b/ext/B/B.xs
index 9d65a720fa..714ac4d649 100644
--- a/ext/B/B.xs
+++ b/ext/B/B.xs
@@ -1195,7 +1195,7 @@ B::OP
LOOP_lastop(o)
B::LOOP o
-#define COP_label(o) o->cop_label
+#define COP_label(o) CopLABEL(o)
#define COP_stashpv(o) CopSTASHPV(o)
#define COP_stash(o) CopSTASH(o)
#define COP_file(o) CopFILE(o)