summaryrefslogtreecommitdiff
path: root/cop.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-05-28 12:55:19 -0600
committerKarl Williamson <khw@cpan.org>2019-05-30 18:13:29 -0600
commit4e5171e9e72a8e719a45a205fb6d9514c2e8dccd (patch)
tree2c4955341fa67bcf5719982019a9fa52989b1702 /cop.h
parent73060c4e2338e283341aabb27f4136e51f4f7b64 (diff)
downloadperl-4e5171e9e72a8e719a45a205fb6d9514c2e8dccd.tar.gz
Add 'n' flag to various =for apidoc lines
This indicates to not output the macro with parentheses for parameters. Currently that doesn't happen anyway, but a future commit will change things so this is required (so that a bug can be fixed)
Diffstat (limited to 'cop.h')
-rw-r--r--cop.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cop.h b/cop.h
index 5c66752859..fca2aa755c 100644
--- a/cop.h
+++ b/cop.h
@@ -1098,17 +1098,17 @@ typedef struct stackinfo PERL_SI;
/*
=head1 Multicall Functions
-=for apidoc Ams||dMULTICALL
+=for apidoc Amns||dMULTICALL
Declare local variables for a multicall. See L<perlcall/LIGHTWEIGHT CALLBACKS>.
-=for apidoc Ams||PUSH_MULTICALL
+=for apidoc Amns||PUSH_MULTICALL
Opening bracket for a lightweight callback.
See L<perlcall/LIGHTWEIGHT CALLBACKS>.
-=for apidoc Ams||MULTICALL
+=for apidoc Amns||MULTICALL
Make a lightweight callback. See L<perlcall/LIGHTWEIGHT CALLBACKS>.
-=for apidoc Ams||POP_MULTICALL
+=for apidoc Amns||POP_MULTICALL
Closing bracket for a lightweight callback.
See L<perlcall/LIGHTWEIGHT CALLBACKS>.