diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-07 01:37:10 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-03-07 01:37:10 +0000 |
commit | 1e62ac33a10830c28db17da2c54df825238f3e85 (patch) | |
tree | 61f3fa96b8ffc88d2d147642682c85317f584680 | |
parent | 924508f06969d29692d1762cecf34a062431e1af (diff) | |
download | perl-1e62ac33a10830c28db17da2c54df825238f3e85.tar.gz |
[win32] a missed s/sp/SP/
p4raw-id: //depot/win32/perl@796
-rw-r--r-- | pod/perlcall.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlcall.pod b/pod/perlcall.pod index ae1030c8d3..865d3bf88d 100644 --- a/pod/perlcall.pod +++ b/pod/perlcall.pod @@ -542,7 +542,7 @@ Here are a few notes on the C function I<call_LeftString>. Parameters are passed to the Perl subroutine using the Perl stack. This is the purpose of the code beginning with the line C<dSP> and -ending with the line C<PUTBACK>. The <dSP> declares a local copy +ending with the line C<PUTBACK>. The C<dSP> declares a local copy of the stack pointer. This local copy should B<always> be accessed as C<SP>. |