From 226f1f9a419f6e7802b5ebf27826fec2c8d4ffc8 Mon Sep 17 00:00:00 2001 From: Koichi KAMICHI Date: Tue, 6 Jun 2006 09:19:10 +0000 Subject: [PATCH] Fixed. --- makettf/makettf.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makettf/makettf.pl b/makettf/makettf.pl index 7f0a7dd..4ce2284 100755 --- a/makettf/makettf.pl +++ b/makettf/makettf.pl @@ -102,7 +102,7 @@ else{ @temp = split(/\r\n|\r|\n/, $temp); foreach(@temp){ if($_ =~ m/:/){ - @temp2 = split(/ |\t/, $_); + @temp2 = split(/ +|\t/, $_); $buhin{$temp2[0]} = $temp2[1]; } } -- 1.7.10.4