summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-05-16 13:30:46 +0000
committerfukachan <fukachan>2001-05-16 13:30:46 +0000
commitbb877b5ae1eb0d238fde1fb34723f71e7166dd0f (patch)
tree0ac223f54dc6eb0f0747387a171268135efed657 /fml
parent177ddf7eb998062f3de174cffa40a6b8637d69f4 (diff)
downloadfml8-bb877b5ae1eb0d238fde1fb34723f71e7166dd0f.tar.gz
fml8-bb877b5ae1eb0d238fde1fb34723f71e7166dd0f.tar.bz2
fml8-bb877b5ae1eb0d238fde1fb34723f71e7166dd0f.zip
clean up
nuke $Id$, require Exporter et. al.
Diffstat (limited to 'fml')
-rw-r--r--fml/lib/__template.pm14
1 files changed, 4 insertions, 10 deletions
diff --git a/fml/lib/__template.pm b/fml/lib/__template.pm
index 1cba1c83..855550e8 100644
--- a/fml/lib/__template.pm
+++ b/fml/lib/__template.pm
@@ -4,18 +4,17 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $Id$
-# $FML$
+# $FML: __template.pm,v 1.5 2001/04/03 09:45:39 fukachan Exp $
#
-package FML::__MODULE_NAME__;
+package __MODULE_NAME__;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
use Carp;
=head1 NAME
-FML::__MODULE_NAME__ - what is this
+__MODULE_NAME__ - what is this
=head1 SYNOPSIS
@@ -27,11 +26,6 @@ FML::__MODULE_NAME__ - what is this
=cut
-
-require Exporter;
-@ISA = qw(Exporter);
-
-
sub new
{
my ($self) = @_;
@@ -54,7 +48,7 @@ redistribute it and/or modify it under the same terms as Perl itself.
=head1 HISTORY
-FML::__MODULE_NAME__ appeared in fml5 mailing list driver package.
+__MODULE_NAME__ appeared in fml5 mailing list driver package.
See C<http://www.fml.org/> for more details.
=cut