diff options
author | Karl Williamson <khw@cpan.org> | 2019-08-31 11:03:21 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-09-02 21:52:11 -0600 |
commit | 31b83e34ba9031a230bd78ab8bf70492c53f2c08 (patch) | |
tree | 2b6be29d371137f370f7f5a9e8c0766b9f7f1309 /pod/perlcall.pod | |
parent | 119392302e0fe40577b5e8afd2e1acb31db272b8 (diff) | |
download | perl-31b83e34ba9031a230bd78ab8bf70492c53f2c08.tar.gz |
Note that PL_errgv is documented
Diffstat (limited to 'pod/perlcall.pod')
-rw-r--r-- | pod/perlcall.pod | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pod/perlcall.pod b/pod/perlcall.pod index 9a268aa4c1..c340716653 100644 --- a/pod/perlcall.pod +++ b/pod/perlcall.pod @@ -993,6 +993,8 @@ equivalent of C<$@>. We use a local temporary, C<err_tmp>, since C<ERRSV> is a macro that calls a function, and C<SvTRUE(ERRSV)> would end up calling that function multiple times. +=for apidoc Amnh|GV *|PL_errgv + =item 3. Note that the stack is popped using C<POPs> in the block where |