diff options
author | Karl Williamson <khw@cpan.org> | 2015-04-23 18:33:15 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-09-03 20:59:57 -0600 |
commit | fbe13c605d92f73c90ff4702b76a97c5e12927a7 (patch) | |
tree | 774ab7f101ca4ec12b2a2180282a5274aa577dc2 /op.h | |
parent | 3c0792e45ff76456148c62f3bbc4873623151f56 (diff) | |
download | perl-fbe13c605d92f73c90ff4702b76a97c5e12927a7.tar.gz |
perlapi, perlintern: Add L<> links to pod
Diffstat (limited to 'op.h')
-rw-r--r-- | op.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -942,19 +942,19 @@ Returns true if o has a sibling Returns the sibling of o, or NULL if there is no sibling =for apidoc Am|void|OpMORESIB_set|OP *o|OP *sib -Sets the sibling of o to the non-zero value sib. See also C<OpLASTSIB_set> -and C<OpMAYBESIB_set>. For a higher-level interface, see -C<op_sibling_splice>. +Sets the sibling of o to the non-zero value sib. See also C<L</OpLASTSIB_set>> +and C<L</OpMAYBESIB_set>>. For a higher-level interface, see +C<L</op_sibling_splice>>. =for apidoc Am|void|OpLASTSIB_set|OP *o|OP *parent Marks o as having no further siblings. On C<PERL_OP_PARENT> builds, marks -o as having the specified parent. See also C<OpMORESIB_set> and +o as having the specified parent. See also C<L</OpMORESIB_set>> and C<OpMAYBESIB_set>. For a higher-level interface, see -C<op_sibling_splice>. +C<L</op_sibling_splice>>. =for apidoc Am|void|OpMAYBESIB_set|OP *o|OP *sib|OP *parent Conditionally does C<OpMORESIB_set> or C<OpLASTSIB_set> depending on whether -sib is non-null. For a higher-level interface, see C<op_sibling_splice>. +sib is non-null. For a higher-level interface, see C<L</op_sibling_splice>>. =cut */ |