summaryrefslogtreecommitdiff
path: root/vms
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2009-01-30 10:08:19 -0600
committerCraig A. Berry <craigberry@mac.com>2009-01-30 10:08:19 -0600
commit57f7515dc9a5acd33e22f384358bd0fa012de89f (patch)
tree987e67d1fa72b53490f6f49d01aa3c9f64b2a57d /vms
parent1bc4b319ba6d50bfdf5332d4378c85af1205184b (diff)
downloadperl-57f7515dc9a5acd33e22f384358bd0fa012de89f.tar.gz
Pod correction for ExtUtils::XSSymSet.
Diffstat (limited to 'vms')
-rw-r--r--vms/ext/XSSymSet.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/vms/ext/XSSymSet.pm b/vms/ext/XSSymSet.pm
index 5fd59e79aa..548c7ea553 100644
--- a/vms/ext/XSSymSet.pm
+++ b/vms/ext/XSSymSet.pm
@@ -128,20 +128,20 @@ __END__
=head1 NAME
-VMS::XSSymSet - keep sets of symbol names palatable to the VMS linker
+ExtUtils::XSSymSet - keep sets of symbol names palatable to the VMS linker
=head1 SYNOPSIS
- use VMS::XSSymSet;
+ use ExtUtils::XSSymSet;
- $set = new VMS::XSSymSet;
+ $set = new ExtUtils::XSSymSet;
while ($sym = make_symbol()) { $set->addsym($sym); }
foreach $safesym ($set->all_trimmed) {
print "Processing $safesym (derived from ",$self->get_orig($safesym),")\n";
do_stuff($safesym);
}
- $safesym = VMS::XSSymSet->trimsym($onesym);
+ $safesym = ExtUtils::XSSymSet->trimsym($onesym);
=head1 DESCRIPTION
@@ -149,7 +149,7 @@ Since the VMS linker distinguishes symbols based only on the first 31
characters of their names, it is occasionally necessary to shorten
symbol names in order to avoid collisions. (This is especially true of
names generated by xsubpp, since prefixes generated by nested package
-names can become quite long.) C<VMS::XSSymSet> provides functions to
+names can become quite long.) C<ExtUtils::XSSymSet> provides functions to
shorten names in a consistent fashion, and to track a set of names to
insure that each is unique. While designed with F<xsubpp> in mind, it
may be used with any set of strings.
@@ -161,7 +161,7 @@ called as methods.
=item new([$maxlen[,$silent]])
-Creates an empty C<VMS::XSSymset> set of symbols. This function may be
+Creates an empty C<ExtUtils::XSSymset> set of symbols. This function may be
called as a static method or via an existing object. If C<$maxlen> or
C<$silent> are specified, they are used as the defaults for maximum
name length and warning behavior in future calls to addsym() or