PDICの単語(見出語)の最大長248byteを超えたのでしょう。エディタで txtファイルの該当部分(102,752番目の単語)をそれ以内に縮めれば良いかと。
おまけ。次のスクリプトで perl toolong.pl xxx.txt とすれば 最大長を超える単語がチェックできます。
#[toolong.pl] $MAX_TANGO = 248; while (<>) { ($tango, $sonota) = split(/ \/\/\/ |\n/, $_); if (length($tango) > $MAX_TANGO) { print $tango . "\n"; } }
|