]> git.p6c8.net - devedit.git/commitdiff
Removing one and more whitespace makes more sense than removing no, one and more...
authorpcanterino <>
Thu, 28 Oct 2004 09:45:07 +0000 (09:45 +0000)
committerpcanterino <>
Thu, 28 Oct 2004 09:45:07 +0000 (09:45 +0000)
modules/Config/DevEdit.pm

index e423819f9d9f7361e9e7c7f79da9295b4959fc71..24b3fe1e6cb6cc03b95b921f4f471d0a3f743722 100644 (file)
@@ -6,7 +6,7 @@ package Config::DevEdit;
 # Read and parse the configuration files
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-04-25
+# Last modified: 2004-10-28
 #
 
 use strict;
@@ -42,7 +42,7 @@ sub read_config($)
 
 # parse_config()
 #
-# Parse an INI-style configuration file
+# Parse a configuration file
 #
 # Params: Path to configuration file
 #
@@ -69,10 +69,10 @@ sub parse_config($)
 
   # Remove whitespaces at the beginning and at the end
 
-  $key   =~ s/^\s*//g;
-  $key   =~ s/\s*$//g;
-  $value =~ s/^\s*//g;
-  $value =~ s/\s*$//g;
+  $key   =~ s/^\s+//g;
+  $key   =~ s/\s+$//g;
+  $value =~ s/^\s+//g;
+  $value =~ s/\s+$//g;
 
   croak "Double defined value '$key' in configuration file '$file'" if($config->{$key});
 

patrick-canterino.de