diff options
author | Sergey Skvortsov <unknown> | 2005-01-17 09:02:33 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-03 07:36:17 +0000 |
commit | 557b887a4219c4f375c8d0bd3219fb4da7bbc7ff (patch) | |
tree | 75c13d81d3d4b0d11ba054c3963cc5e4bad4f930 /pod | |
parent | 0630166f39b2fc31415e8078cd74fafef99606af (diff) | |
download | perl-557b887a4219c4f375c8d0bd3219fb4da7bbc7ff.tar.gz |
[perl #33809] optimize macro dXSARGS
From: Sergey Skvortsov (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.0.11-33809-105714.16.4209917806492@perl.org>
p4raw-id: //depot/perl@24372
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index b003135dd4..3895ae6d15 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -5615,6 +5615,16 @@ This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>. =for hackers Found in file XSUB.h +=item dAXMARK + +Sets up the C<ax> variable and stack marker variable C<mark>. +This is usually handled automatically by C<xsubpp> by calling C<dXSARGS>. + + dAXMARK; + +=for hackers +Found in file XSUB.h + =item dITEMS Sets up the C<items> variable. |