summaryrefslogtreecommitdiff
path: root/pod/perlmod.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-03-22 14:37:43 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-03-22 14:37:43 +0000
commit59f521f4af7acce29f3bf3ecf4f2c911e305e59b (patch)
tree094f6a99ad4f47697501c93c0a5a8fa9f874b950 /pod/perlmod.pod
parent021bb724233baf635b358d25494b09150a23f4ee (diff)
downloadperl-59f521f4af7acce29f3bf3ecf4f2c911e305e59b.tar.gz
Remove references to perlcc from the core docs.
p4raw-id: //depot/perl@30685
Diffstat (limited to 'pod/perlmod.pod')
-rw-r--r--pod/perlmod.pod4
1 files changed, 1 insertions, 3 deletions
diff --git a/pod/perlmod.pod b/pod/perlmod.pod
index 240630c685..53f3d21c65 100644
--- a/pod/perlmod.pod
+++ b/pod/perlmod.pod
@@ -323,9 +323,7 @@ and before the run time begins, in LIFO order. C<CHECK> code blocks are used
in the Perl compiler suite to save the compiled state of the program.
C<INIT> blocks are run just before the Perl runtime begins execution, in
-"first in, first out" (FIFO) order. For example, the code generators
-documented in L<perlcc> make use of C<INIT> blocks to initialize and
-resolve pointers to XSUBs.
+"first in, first out" (FIFO) order.
When you use the B<-n> and B<-p> switches to Perl, C<BEGIN> and
C<END> work just as they do in B<awk>, as a degenerate case.