diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-10-26 21:57:31 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-10-26 21:57:31 -0700 |
commit | 9b73ce74e6abfb45626bce7a21465e6db6302be0 (patch) | |
tree | b42fdc0582602ccc0cbd61929140c3695520eb2c /git-send-email.perl | |
parent | 329351feeb0c08c835ac4ff05f127fbfe42a78cf (diff) | |
parent | 3328acedc6104e3d46e8f0d26006d9650092ef3e (diff) | |
download | git-9b73ce74e6abfb45626bce7a21465e6db6302be0.tar.gz |
Merge branch 'ab/require-perl-5.8'
* ab/require-perl-5.8:
perl: use "use warnings" instead of -w
perl: bump the required Perl version to 5.8 from 5.6.[21]
Diffstat (limited to 'git-send-email.perl')
-rwxr-xr-x | git-send-email.perl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl index 897bf5960a..196efcd5e4 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl # # Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com> # Copyright 2005 Ryan Anderson <ryan@michonline.com> @@ -16,6 +16,7 @@ # and second line is the subject of the message. # +use 5.008; use strict; use warnings; use Term::ReadLine; |