1
0
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:
Ben Bullock
2024-02-18 10:31:06 +09:00
parent 93934ee1e4
commit d0d7c581a3
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -8,6 +8,9 @@
".":[
"0002e.svg"
],
"0":[
"00030.svg"
],
"1":[
"00031.svg"
],
+1 -1
View File
@@ -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;