Merge pull request #421 from Hegz/master

Fixed perl syntax checking
This commit is contained in:
Martin Grenfell 2012-12-05 15:11:36 -08:00
commit 1b84327e09

View File

@ -1,6 +1,4 @@
#!/usr/bin/perl #!/usr/bin/perl
use warnings
# vimparse.pl - Reformats the error messages of the Perl interpreter for use # vimparse.pl - Reformats the error messages of the Perl interpreter for use
# with the quickfix mode of Vim # with the quickfix mode of Vim
# #
@ -67,7 +65,7 @@ use warnings
# #
# Tested under SunOS 5.7 with Perl 5.6.0. Let me know if it's not working for # Tested under SunOS 5.7 with Perl 5.6.0. Let me know if it's not working for
# you. # you.
use warnings;
use strict; use strict;
use Getopt::Std; use Getopt::Std;