From: Artur Bergman Date: Mon, 10 Sep 2001 10:13:02 +0000 (+0000) Subject: Removed reference of -DPERL_CUSTOM_OPS in the documentation. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b7cb320da5fba9d13ff80cbaf19179dae7debe95;p=p5sagit%2Fp5-mst-13.2.git Removed reference of -DPERL_CUSTOM_OPS in the documentation. p4raw-id: //depot/perl@11969 --- diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 88ca803..7c85dfb 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -2347,10 +2347,9 @@ define your own ops. This is primarily to allow the building of interpreters for other languages in the Perl core, but it also allows optimizations through the creation of "macro-ops" (ops which perform the functions of multiple ops which are usually executed together, such as -C.) Currently, this feature must be enabled with the C -flag C<-DPERL_CUSTOM_OPS>. +C.) -Enabling the feature will create a new op type, C. The Perl +This feature is implmented as a new op type, C. The Perl core does not "know" anything special about this op type, and so it will not be involved in any optimizations. This also means that you can define your custom ops to be any op structure - unary, binary, list and