Skip Menu |

This queue is for tickets about the perlindex CPAN distribution.

Report information
The Basics
Id: 92170
Status: new
Priority: 0/
Queue: perlindex

People
Owner: Nobody in particular
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.606
Fixed in: (no value)



Subject: Text::English module starts with #!
The lib/Text/English.pm starts like a program: #!/usr/bin/perl # -*- Mode: Perl -*- # Author : Ian Phillipps However there is no global scope code. So I guess there is no use for executing the file, thus the first line is useless and it can be removed. Attached patch implements it. -- Petr
Subject: 0001-Remove-useless-interpreter-declaration-from-Text-Eng.patch
From 7d86c93005d2cd3c0e6b6d401583001d4e4132a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Wed, 15 Jan 2014 16:12:08 +0100 Subject: [PATCH] Remove useless interpreter declaration from Text::English module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Písař <ppisar@redhat.com> --- lib/Text/English.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Text/English.pm b/lib/Text/English.pm index 2d45da8..a785a25 100644 --- a/lib/Text/English.pm +++ b/lib/Text/English.pm @@ -1,4 +1,3 @@ -#!/usr/bin/perl # -*- Mode: Perl -*- # Author : Ian Phillipps # Last Modified On: Sun May 2 15:35:33 2004 -- 1.8.4.2