diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-07-02 15:05:04 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-07-02 15:05:04 +0000 |
commit | f54ba1c2cdf3a6915dd8a469c4387bc18df382fd (patch) | |
tree | d5b43e4d262d3f926149e0dfbbb5dcf95e87bf22 /pod | |
parent | 893645bdb81a69e140b170b7311baa678533efa5 (diff) | |
download | perl-f54ba1c2cdf3a6915dd8a469c4387bc18df382fd.tar.gz |
replace ckWARN macros with functions
p4raw-id: //depot/perl@25050
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlintern.pod | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod index b4b6ed7577..3baecb45de 100644 --- a/pod/perlintern.pod +++ b/pod/perlintern.pod @@ -224,7 +224,12 @@ Found in file pad.h =item PAD_SET_CUR Set the current pad to be pad C<n> in the padlist, saving -the previous current pad. +the previous current pad. NB currently this macro expands to a string too +long for some compilers, so it's best to replace it with + + SAVECOMPPAD(); + PAD_SET_CUR_NOSAVE(padlist,n); + void PAD_SET_CUR (PADLIST padlist, I32 n) |