1
1

Fixed an off-by-one error. Changed the interpreter to /usr/bin/env perl.

Этот коммит содержится в:
Roland Illig 2005-05-24 09:25:38 +00:00
родитель d62c0470e3
Коммит ad5dcc1909

Просмотреть файл

@ -1,4 +1,5 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl
use warnings;
# GNOME po update utility.
# (C) 2000 The Free Software Foundation
@ -87,7 +88,7 @@ if ($LANG=~/^-(.)*/){
open FILE, "<$file";
while (<FILE>) {
if ($_=~/_\s*\(\"/o){
$file = unpack("x3 A*",$file) . "\n";
$file = unpack("x4 A*",$file) . "\n";
push @buff1, $file;
last;
}