summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-05-26 09:55:36 +0000
committerfukachan <fukachan>2005-05-26 09:55:36 +0000
commit1175e1d37092e96b0f6eb0d260f0a3a43fc8151d (patch)
treee4f3ffe2d5eb6b2fe5748a079cb5f44170fa5423 /fml/lib/FML/Command
parent70e6d93883f77bedc82dbef888e850dbcd122d4e (diff)
downloadfml8-1175e1d37092e96b0f6eb0d260f0a3a43fc8151d.tar.gz
fml8-1175e1d37092e96b0f6eb0d260f0a3a43fc8151d.tar.bz2
fml8-1175e1d37092e96b0f6eb0d260f0a3a43fc8151d.zip
not use str.str
Diffstat (limited to 'fml/lib/FML/Command')
-rw-r--r--fml/lib/FML/Command/DirUtils.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/fml/lib/FML/Command/DirUtils.pm b/fml/lib/FML/Command/DirUtils.pm
index 13d5ab5b..96adbbb2 100644
--- a/fml/lib/FML/Command/DirUtils.pm
+++ b/fml/lib/FML/Command/DirUtils.pm
@@ -1,10 +1,10 @@
#-*- perl -*-
#
-# Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi
+# Copyright (C) 2002,2003,2004,2005 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: DirUtils.pm,v 1.19 2004/07/23 04:16:24 fukachan Exp $
+# $FML: DirUtils.pm,v 1.20 2004/07/23 15:59:03 fukachan Exp $
#
package FML::Command::DirUtils;
@@ -93,7 +93,7 @@ sub dir
my $y = '';
for my $x (@$argv) {
if ($safe->regexp_match('directory', $x) || $x =~ /^\s*$/) {
- $y .= " ". $x;
+ $y .= " $x";
}
}
@@ -129,7 +129,7 @@ Ken'ichi Fukamachi
=head1 COPYRIGHT
-Copyright (C) 2002,2003,2004 Ken'ichi Fukamachi
+Copyright (C) 2002,2003,2004,2005 Ken'ichi Fukamachi
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.