diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-04-06 20:11:52 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-04-06 20:11:52 +0000 |
commit | 4b65a9196162b345e7cbe8a43eca838c2e79e41b (patch) | |
tree | 4991882afc4678604942133800e05d40c06d294f /ext/B | |
parent | 439cad7f0af0ff91bdf31605de1593fa2b4842c3 (diff) | |
download | perl-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.pm | 2 | ||||
-rw-r--r-- | ext/B/B.xs | 2 |
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) |