diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-12-18 06:21:22 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-12-18 06:22:56 -0800 |
commit | aa13e525452842be4732a0b9d771f3641019dc96 (patch) | |
tree | 49bee721ded34bc8cf43f020760aba250641348e /ext | |
parent | 2bcaee201241b9f2e074ee2ca7503c9ef0bfdfe7 (diff) | |
download | perl-aa13e525452842be4732a0b9d771f3641019dc96.tar.gz |
Long verbatim lines in SDBM_File.pm
Diffstat (limited to 'ext')
-rw-r--r-- | ext/SDBM_File/SDBM_File.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/SDBM_File/SDBM_File.pm b/ext/SDBM_File/SDBM_File.pm index dcb12bcde9..0410bef32d 100644 --- a/ext/SDBM_File/SDBM_File.pm +++ b/ext/SDBM_File/SDBM_File.pm @@ -50,9 +50,9 @@ runs. Use C<SDBM_File> with the Perl built-in C<tie> function to establish the connection between the variable and the file. - tie %hash, 'SDBM_File', $basename, $modeflags, $perms; + tie %hash, 'SDBM_File', $basename, $modeflags, $perms; - tie %hash, 'SDBM_File', $dirfilename, $modeflags, $perms, $pagfilename; + tie %hash, 'SDBM_File', $dirfile, $modeflags, $perms, $pagfilename; C<$basename> is the base filename for the database. The database is two files with ".dir" and ".pag" extensions appended to C<$basename>, @@ -60,7 +60,7 @@ files with ".dir" and ".pag" extensions appended to C<$basename>, $basename.dir (or .sdbm_dir on VMS, per DIRFEXT constant) $basename.pag -The two filenames can also be given separately in full as C<$dirfilename> +The two filenames can also be given separately in full as C<$dirfile> and C<$pagfilename>. This suits for two files without ".dir" and ".pag" extensions, perhaps for example two files from L<File::Temp>. |