From aa13e525452842be4732a0b9d771f3641019dc96 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Wed, 18 Dec 2013 06:21:22 -0800 Subject: [PATCH] Long verbatim lines in SDBM_File.pm --- ext/SDBM_File/SDBM_File.pm | 6 +++--- 1 file 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 with the Perl built-in C 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. -- 2.34.1