summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-07-22 16:43:11 -0600
committerKarl Williamson <khw@cpan.org>2020-09-05 17:31:10 -0600
commit52ae22335178218a9dcec57c4ecb1f5158c828ef (patch)
tree4d6dc7190c8e4f7c743e0c433bf1cf570a5c5c18 /cop.h
parente2bfa9e85d37b1bcb4ad56962e5ce5b65b415482 (diff)
downloadperl-52ae22335178218a9dcec57c4ecb1f5158c828ef.tar.gz
Remove redundant documentation
Now that we can get automatic links in perlapi, remove the redundant stripped-down documentation that goes there in favor of the better documentation in perlcall.
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/cop.h b/cop.h
index 49f1d0c12c..c811eb0ec4 100644
--- a/cop.h
+++ b/cop.h
@@ -937,35 +937,6 @@ struct context {
#define CXINC (cxstack_ix < cxstack_max ? ++cxstack_ix : (cxstack_ix = cxinc()))
-/*
-=for apidoc AmnU||G_SCALAR
-Used to indicate scalar context. See C<L</GIMME_V>>, C<L</GIMME>>, and
-L<perlcall>.
-
-=for apidoc AmnU||G_ARRAY
-Used to indicate list context. See C<L</GIMME_V>>, C<L</GIMME>> and
-L<perlcall>.
-
-=for apidoc AmnU||G_VOID
-Used to indicate void context. See C<L</GIMME_V>> and L<perlcall>.
-
-=for apidoc AmnU||G_DISCARD
-Indicates that arguments returned from a callback should be discarded. See
-L<perlcall>.
-
-=for apidoc AmnU||G_EVAL
-
-Used to force a Perl C<eval> wrapper around a callback. See
-L<perlcall>.
-
-=for apidoc AmnU||G_NOARGS
-
-Indicates that no arguments are being sent to a callback. See
-L<perlcall>.
-
-=cut
-*/
-
#define G_SCALAR 2
#define G_ARRAY 3
#define G_VOID 1