diff options
author | Paul "LeoNerd" Evans <leonerd@leonerd.org.uk> | 2021-05-31 22:35:40 +0100 |
---|---|---|
committer | Paul Evans <leonerd@leonerd.org.uk> | 2021-06-02 00:29:54 +0100 |
commit | eb7e169eaa8ff0e7e9a629f87889b08c355568e1 (patch) | |
tree | 50b61983fb3eb7854cb0b1933fc41007a37f95d2 /op.h | |
parent | 499aa13271ff03425a8258615a0702c5b830be8b (diff) | |
download | perl-eb7e169eaa8ff0e7e9a629f87889b08c355568e1.tar.gz |
Rename G_ARRAY to G_LIST; provide back-compat when not(PERL_CORE)
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -74,12 +74,12 @@ typedef PERL_BITFIELD16 Optype; =for apidoc Amn|U32|GIMME_V The XSUB-writer's equivalent to Perl's C<wantarray>. Returns C<G_VOID>, -C<G_SCALAR> or C<G_ARRAY> for void, scalar or list context, +C<G_SCALAR> or C<G_LIST> for void, scalar or list context, respectively. See L<perlcall> for a usage example. =for apidoc AmnD|U32|GIMME A backward-compatible version of C<GIMME_V> which can only return -C<G_SCALAR> or C<G_ARRAY>; in a void context, it returns C<G_SCALAR>. +C<G_SCALAR> or C<G_LIST>; in a void context, it returns C<G_SCALAR>. Deprecated. Use C<GIMME_V> instead. =cut @@ -160,7 +160,7 @@ Deprecated. Use C<GIMME_V> instead. # define GIMME \ (PL_op->op_flags & OPf_WANT \ ? ((PL_op->op_flags & OPf_WANT) == OPf_WANT_LIST \ - ? G_ARRAY \ + ? G_LIST \ : G_SCALAR) \ : dowantarray()) #endif |