diff options
author | Kenneth Heafield <kenlm@kheafield.com> | 2012-02-10 14:13:44 -0500 |
---|---|---|
committer | Kenneth Heafield <kenlm@kheafield.com> | 2012-02-10 14:13:44 -0500 |
commit | 79c3acac4ea3e19e9626b7d104f6331b2f4b55fc (patch) | |
tree | 2f3ffdc4480c30903d28dde4e9dca712120251d3 /gi/pf | |
parent | 99f221dfd9b1c086baca8b675920f4aecea8aca9 (diff) | |
parent | 3b1851c8c4e5e7bec3e83177b5c08e566890517c (diff) |
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'gi/pf')
-rwxr-xr-x | gi/pf/guess-translits.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gi/pf/guess-translits.pl b/gi/pf/guess-translits.pl index ab737121..aafec13a 100755 --- a/gi/pf/guess-translits.pl +++ b/gi/pf/guess-translits.pl @@ -28,6 +28,7 @@ while(<STDIN>) { my %b2a; for my $ap (@as) { my ($a,$b) = split /-/, $ap; + die "BAD INPUT: $_\n" unless defined $a && defined $b; $a2b{$a}->{$b} = 1; $b2a{$b}->{$a} = 1; } |