diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-15 09:28:51 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-15 12:47:34 -0700 |
commit | 0bbad7483f446e61b319d774f9c5d184a33ea442 (patch) | |
tree | 38083fa15dabcc1b193893a38cc306676ecd3cea /lib/CORE.pod | |
parent | dcbdef25d6257b5884d709cd40a0fdf5314546ef (diff) | |
download | perl-0bbad7483f446e61b319d774f9c5d184a33ea442.tar.gz |
&CORE::not and &CORE::getprotobynumber
These two are now supported. They were not before, because their
prototypes gave them unary precedence, even though these ops both
have list precedence. That was corrected in the previous commit.
Diffstat (limited to 'lib/CORE.pod')
-rw-r--r-- | lib/CORE.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CORE.pod b/lib/CORE.pod index 1a98f76d2d..10fa424702 100644 --- a/lib/CORE.pod +++ b/lib/CORE.pod @@ -35,7 +35,7 @@ feature is new in Perl 5.16. You can take references to these and make aliases. However, they can only be called as barewords; i.e., you cannot use ampersand syntax (C<&foo>) or call them through references. See the C<shove> example above. This works for all overridable keywords, except -for C<dump>, C<getprotobynumber>, C<not> and the infix operators. +for C<dump> and the infix operators. =head1 OVERRIDING CORE FUNCTIONS |