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:
da7ea57
)
add a missing C<...> to perldelta
author
Ricardo Signes
<rjbs@cpan.org>
Fri, 20 Apr 2012 17:40:31 +0000
(13:40 -0400)
committer
Ricardo Signes
<rjbs@cpan.org>
Fri, 20 Apr 2012 17:40:31 +0000
(13:40 -0400)
thanks for the report, James Aitken!
Porting/perl5160delta.pod
patch
|
blob
|
blame
|
history
diff --git
a/Porting/perl5160delta.pod
b/Porting/perl5160delta.pod
index
aee6229
..
cf22e96
100644
(file)
--- a/
Porting/perl5160delta.pod
+++ b/
Porting/perl5160delta.pod
@@
-829,7
+829,7
@@
caching of C<< $< >>, C<< $> >>, C<$(> and C<$)> has been removed.
When we cached these values our idea of what they were would drift out
of sync with reality if someone (e.g., someone embedding perl) called
-
sete?[ug]id()
without updating C<PL_e?[ug]id>. Having to deal with
+
C<sete?[ug]id()>
without updating C<PL_e?[ug]id>. Having to deal with
this complexity wasn't worth it given how cheap the C<gete?[ug]id()>
system call is.