summaryrefslogtreecommitdiff
path: root/pod/perlembed.pod
diff options
context:
space:
mode:
authorStephen P. Potter <spp@ds.net>2000-11-06 13:56:43 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-07 00:12:54 +0000
commitd785950e9638864cb0ef02b2b0b95e52abe662d6 (patch)
tree1919c2c419a4d5a14d2cbb83e40e7f0fe6abaddf /pod/perlembed.pod
parent8fb4f07551a52123b76742df5607973a43f5bdfe (diff)
downloadperl-d785950e9638864cb0ef02b2b0b95e52abe662d6.tar.gz
Pod updates
Message-Id: <200011062357.SAA18173@spotter.yi.org> p4raw-id: //depot/perl@7585
Diffstat (limited to 'pod/perlembed.pod')
-rw-r--r--pod/perlembed.pod27
1 files changed, 13 insertions, 14 deletions
diff --git a/pod/perlembed.pod b/pod/perlembed.pod
index 1787e4b2eb..6e3db32b96 100644
--- a/pod/perlembed.pod
+++ b/pod/perlembed.pod
@@ -37,25 +37,25 @@ Read on...
=over 5
-L<Compiling your C program>
+=item Compiling your C program
-L<Adding a Perl interpreter to your C program>
+=item Adding a Perl interpreter to your C program
-L<Calling a Perl subroutine from your C program>
+=item Calling a Perl subroutine from your C program
-L<Evaluating a Perl statement from your C program>
+=item Evaluating a Perl statement from your C program
-L<Performing Perl pattern matches and substitutions from your C program>
+=item Performing Perl pattern matches and substitutions from your C program
-L<Fiddling with the Perl stack from your C program>
+=item Fiddling with the Perl stack from your C program
-L<Maintaining a persistent interpreter>
+=item Maintaining a persistent interpreter
-L<Maintaining multiple interpreter instances>
+=item Maintaining multiple interpreter instances
-L<Using Perl modules, which themselves use C libraries, from your C program>
+=item Using Perl modules, which themselves use C libraries, from your C program
-L<Embedding Perl under Win32>
+=item Embedding Perl under Win32
=back
@@ -258,9 +258,8 @@ and package C<END {}> blocks.
If you want to pass arguments to the Perl subroutine, you can add
strings to the C<NULL>-terminated C<args> list passed to
I<call_argv>. For other data types, or to examine return values,
-you'll need to manipulate the Perl stack. That's demonstrated in the
-last section of this document: L<Fiddling with the Perl stack from
-your C program>.
+you'll need to manipulate the Perl stack. That's demonstrated in
+L<Fiddling with the Perl stack from your C program>.
=head2 Evaluating a Perl statement from your C program
@@ -948,7 +947,7 @@ B<ExtUtils::Embed> can also automate writing the I<xs_init> glue code.
Consult L<perlxs>, L<perlguts>, and L<perlapi> for more details.
-=head1 Embedding Perl under Windows
+=head1 Embedding Perl under Win32
In general, all of the source code shown here should work unmodified under
Windows.