summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Config.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-02-17 03:13:47 +0000
committerfukachan <fukachan>2002-02-17 03:13:47 +0000
commit9413c6ebe8380f0deece09baaf3b742b8e5bc49b (patch)
treeb473560c1cdf845b806c2c0260a26d028328dfac /fml/lib/FML/Config.pm
parentab2ef9ed7dcb834731c6a853c246fe5de6f8cc72 (diff)
downloadfml8-9413c6ebe8380f0deece09baaf3b742b8e5bc49b.tar.gz
fml8-9413c6ebe8380f0deece09baaf3b742b8e5bc49b.tar.bz2
fml8-9413c6ebe8380f0deece09baaf3b742b8e5bc49b.zip
remove \s*$
Diffstat (limited to 'fml/lib/FML/Config.pm')
-rw-r--r--fml/lib/FML/Config.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/fml/lib/FML/Config.pm b/fml/lib/FML/Config.pm
index 3456f1f1..bee20b31 100644
--- a/fml/lib/FML/Config.pm
+++ b/fml/lib/FML/Config.pm
@@ -1,7 +1,7 @@
#-*- perl -*-
# Copyright (C) 2000,2001,2002 Ken'ichi Fukamachi
#
-# $FML: Config.pm,v 1.51 2002/02/01 12:03:55 fukachan Exp $
+# $FML: Config.pm,v 1.52 2002/02/17 01:11:11 fukachan Exp $
#
package FML::Config;
@@ -717,7 +717,7 @@ sub is_hook_defined
print STDERR $@ if $@;
my $is_defined = 0;
- my $hook = sprintf("%s::%s", '$FML::Config::Hook', $hook_name);
+ my $hook = sprintf("%s::%s", '$FML: Config.pm,v 1.52 2002/02/17 01:11:11 fukachan Exp $hook_name);
eval qq{
if (defined( $hook )) {
@@ -753,14 +753,14 @@ sub get_hook
my $r = ''; # return value;
my $namel = $hook_name; $namel =~ tr/A-Z/a-z/; # lowercase
my $nameu = $hook_name; $nameu =~ tr/a-z/A-Z/; # uppercase
- my $hookl = sprintf("%s::%s", '$FML::Config::Hook', $namel);
- my $hooku = sprintf("%s::%s", '$FML::Config::Hook', $nameu);
+ my $hookl = sprintf("%s::%s", '$FML: Config.pm,v 1.52 2002/02/17 01:11:11 fukachan Exp $namel);
+ my $hooku = sprintf("%s::%s", '$FML: Config.pm,v 1.52 2002/02/17 01:11:11 fukachan Exp $nameu);
# check both lower and upper case e.g. start_hook and START_HOOK.
eval qq{
- if (defined( $hookl )) {
+ if (defined( $hookl )) {
\$r = $hookl;
}
- elsif (defined( $hooku )) {
+ elsif (defined( $hooku )) {
\$r = $hooku;
}
};