Wrap.pm (automake-1.16.2.tar.xz) | : | Wrap.pm (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
# GNU General Public License for more details. | # GNU General Public License for more details. | |||
# You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | |||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | # along with this program. If not, see <https://www.gnu.org/licenses/>. | |||
package Automake::Wrap; | package Automake::Wrap; | |||
use 5.006; | use 5.006; | |||
use strict; | use strict; | |||
use warnings FATAL => 'all'; | ||||
require Exporter; | use Exporter; | |||
use vars '@ISA', '@EXPORT_OK'; | ||||
@ISA = qw/Exporter/; | our @ISA = qw (Exporter); | |||
@EXPORT_OK = qw/wrap makefile_wrap/; | our @EXPORT_OK = qw (wrap makefile_wrap); | |||
=head1 NAME | =head1 NAME | |||
Automake::Wrap - a paragraph formatter | Automake::Wrap - a paragraph formatter | |||
=head1 SYNOPSIS | =head1 SYNOPSIS | |||
use Automake::Wrap 'wrap', 'makefile_wrap'; | use Automake::Wrap 'wrap', 'makefile_wrap'; | |||
print wrap ($first_ident, $next_ident, $end_of_line, $max_length, | print wrap ($first_ident, $next_ident, $end_of_line, $max_length, | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 5 lines changed or added |