]> git.p6c8.net - devedit.git/blobdiff - modules/File/Access.pm
- When composing the temporary virtual path for a new file, don't call
[devedit.git] / modules / File / Access.pm
index 31377d9f55438ead8802f2cdffbe34dcc856a6b4..4fa468d8431d9cad4322fe1ab0160ec74d908269 100644 (file)
@@ -3,11 +3,11 @@ package File::Access;
 #
 # Dev-Editor - Module File::Access
 #
-# Some simple routines for doing things with files
-# with only one command
+# Some simple routines for doing things with files by
+# using only one command
 #
 # Author:        Patrick Canterino <patrick@patshaping.de>
-# Last modified: 2004-12-17
+# Last modified: 2005-01-06
 #
 
 use strict;
@@ -70,9 +70,9 @@ sub dir_read($)
 
  foreach my $entry(@entries)
  {
-  next if($entry eq "." || $entry eq "..");
+  next if($entry eq '.' || $entry eq '..');
 
-  if(-d $dir."/".$entry)
+  if(-d $dir.'/'.$entry)
   {
    push(@dirs,$entry);
   }

patrick-canterino.de