This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c229c17
)
[perl #120903] fix a typo
author
Tony Cook
<tony@develop-help.com>
Thu, 3 Sep 2015 00:41:40 +0000
(10:41 +1000)
committer
Tony Cook
<tony@develop-help.com>
Thu, 3 Sep 2015 00:41:40 +0000
(10:41 +1000)
or should that be "fix an typo"
pod/perlcall.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlcall.pod
b/pod/perlcall.pod
index
c5bb267
..
c0af7e8
100644
(file)
--- a/
pod/perlcall.pod
+++ b/
pod/perlcall.pod
@@
-989,7
+989,7
@@
is the direct equivalent of this bit of Perl
C<PL_errgv> is a perl global of type C<GV *> that points to the symbol
table entry containing the error. C<ERRSV> therefore refers to the C
-equivalent of C<$@>. We use a
n
local temporary, C<err_tmp>, since
+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.