diff options
| author | fukachan <fukachan> | 2005-05-26 10:20:03 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2005-05-26 10:20:03 +0000 |
| commit | 74b391b33f9d16c40fdfe9b72d83c2dfce893e39 (patch) | |
| tree | edc97823e41b8e4780537b2e6327bb9ec85a18d8 /fml/lib/FML/Process | |
| parent | 8b58c0160dff722773e8d5564f2b43bc82c4662f (diff) | |
| download | fml8-74b391b33f9d16c40fdfe9b72d83c2dfce893e39.tar.gz fml8-74b391b33f9d16c40fdfe9b72d83c2dfce893e39.tar.bz2 fml8-74b391b33f9d16c40fdfe9b72d83c2dfce893e39.zip | |
not use str.str
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/DocViewer.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fml/lib/FML/Process/DocViewer.pm b/fml/lib/FML/Process/DocViewer.pm index 0b1164b7..2d3e4be4 100644 --- a/fml/lib/FML/Process/DocViewer.pm +++ b/fml/lib/FML/Process/DocViewer.pm @@ -1,9 +1,9 @@ #-*- perl -*- # -# Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi +# Copyright (C) 2000,2001,2002,2003,2004,2005 Ken'ichi Fukamachi # All rights reserved. # -# $FML: DocViewer.pm,v 1.32 2004/04/23 04:10:36 fukachan Exp $ +# $FML: DocViewer.pm,v 1.33 2004/07/11 15:43:39 fukachan Exp $ # package FML::Process::DocViewer; @@ -49,7 +49,7 @@ load default configuration files and fix @INC. =head2 verify_request($args) -show help unless @ARGV. +show help unless @ARGV specified. =cut @@ -156,7 +156,7 @@ sub _fmldoc # add path for perl executatbles e.g. /usr/local/bin eval q{ use Config; - $ENV{'PATH'} .= ":". $Config{ scriptdir }; + $ENV{'PATH'} .= sprintf(":%s", $Config{ scriptdir }); exec 'perldoc', @opts, @$argv; }; croak($@); @@ -230,7 +230,7 @@ Ken'ichi Fukamachi =head1 COPYRIGHT -Copyright (C) 2000,2001,2002,2003,2004 Ken'ichi Fukamachi +Copyright (C) 2000,2001,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. |
