Getopt.pm (automake-1.16.2.tar.xz) | : | Getopt.pm (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 36 | skipping to change at line 36 | |||
=head1 DESCRIPTION | =head1 DESCRIPTION | |||
Export a function C<parse_options>, performing parsing of command | Export a function C<parse_options>, performing parsing of command | |||
line options in conformance to the GNU Coding standards. | line options in conformance to the GNU Coding standards. | |||
=cut | =cut | |||
use 5.006; | use 5.006; | |||
use strict; | use strict; | |||
use warnings FATAL => 'all'; | use warnings FATAL => 'all'; | |||
use Carp qw (confess croak); | ||||
use Exporter (); | use Exporter (); | |||
use Getopt::Long (); | use Getopt::Long (); | |||
use Automake::ChannelDefs qw/fatal/; | ||||
use Carp qw/croak confess/; | ||||
use vars qw (@ISA @EXPORT); | use Automake::ChannelDefs qw (fatal); | |||
@ISA = qw (Exporter); | ||||
@EXPORT= qw/getopt/; | our @ISA = qw (Exporter); | |||
our @EXPORT = qw (getopt); | ||||
=item C<parse_options (%option)> | =item C<parse_options (%option)> | |||
Wrapper around C<Getopt::Long>, trying to conform to the GNU | Wrapper around C<Getopt::Long>, trying to conform to the GNU | |||
Coding Standards for error messages. | Coding Standards for error messages. | |||
=cut | =cut | |||
sub parse_options (%) | sub parse_options (%) | |||
{ | { | |||
End of changes. 3 change blocks. | ||||
5 lines changed or deleted | 6 lines changed or added |