mirror of
https://github.com/KanjiVG/kanjivg.git
synced 2026-07-09 23:30:30 +02:00
Fix a skipped character due to error in Perl script
This commit is contained in:
@@ -8,6 +8,9 @@
|
||||
".":[
|
||||
"0002e.svg"
|
||||
],
|
||||
"0":[
|
||||
"00030.svg"
|
||||
],
|
||||
"1":[
|
||||
"00031.svg"
|
||||
],
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ my %index;
|
||||
my @files = <$Bin/kanji/*.svg>;
|
||||
for my $file (@files) {
|
||||
my ($kanji, $ex) = file_to_kanji ($file);
|
||||
if (! $kanji) {
|
||||
if (! defined $kanji) {
|
||||
next;
|
||||
}
|
||||
my $tfile = $file;
|
||||
|
||||
Reference in New Issue
Block a user