diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-12-28 23:57:16 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-12-28 23:57:16 +0000 |
commit | 44a10c71f5d5adc63a15c1d8fb5e8b72de48836f (patch) | |
tree | c22b1fbd35989df88494a53e277431c9ce82beb9 /sv.h | |
parent | 8eeaf79a35f94bcc9187bdbe4d3d43dc65f8a234 (diff) | |
download | perl-44a10c71f5d5adc63a15c1d8fb5e8b72de48836f.tar.gz |
Eliminate BmPREVIOUS_set - with the complexity gone from how the datum
is stored, there's no need for it.
p4raw-id: //depot/perl@29635
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -1464,8 +1464,6 @@ the scalar's value cannot change unless written to. # define BmPREVIOUS(sv) ((XPVGV*) SvANY(sv))->xnv_u.xbm_s.xbm_previous #endif -#define BmPREVIOUS_set(sv, val) \ - STMT_START { BmPREVIOUS(sv) = val; } STMT_END #define FmLINES(sv) ((XPVFM*) SvANY(sv))->xfm_lines |