diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-26 17:40:28 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-09-04 16:13:25 -0600 |
commit | 70b05c7cee1d4db8aa1fee6424603ecb21eac423 (patch) | |
tree | 985b89f42cb8193948e8eb569b7c98a550d8d488 /op.h | |
parent | 36ea2d2f8cd0c6ceb2355bf9515ad1898d12ebfc (diff) | |
download | perl-70b05c7cee1d4db8aa1fee6424603ecb21eac423.tar.gz |
Change some =head1 to apidoc_section lines
apidoc_section is slightly favored over head1, as it is known only to
autodoc, and can't be confused with real pod.
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -639,7 +639,7 @@ typedef struct { /* -=head1 Optree Manipulation Functions +=for apidoc_section Optree Manipulation Functions =for apidoc Am|OP*|LINKLIST|OP *o Given the root of an optree, link the tree in execution order using the @@ -751,7 +751,7 @@ struct block_hooks { }; /* -=head1 Compile-time scope hooks +=for apidoc_section Compile-time scope hooks =for apidoc mx|U32|BhkFLAGS|BHK *hk Return the BHK's flags. @@ -849,7 +849,7 @@ preprocessing token; the type of C<arg> depends on C<which>. #define OP_LVALUE_NO_CROAK 1 /* -=head1 Custom Operators +=for apidoc_section Custom Operators =for apidoc Am|U32|XopFLAGS|XOP *xop Return the XOP's flags. @@ -945,7 +945,7 @@ typedef enum { (Perl_custom_op_get_field(x, XOPe_xop_ptr).xop_ptr) /* -=head1 Optree Manipulation Functions +=for apidoc_section Optree Manipulation Functions =for apidoc Am|const char *|OP_NAME|OP *o Return the name of the provided OP. For core ops this looks up the name @@ -1060,7 +1060,7 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>. #define newSUB(f, o, p, b) newATTRSUB((f), (o), (p), NULL, (b)) /* -=head1 Hook manipulation +=for apidoc_section Hook manipulation */ #ifdef USE_ITHREADS |