This commit is contained in:
Jamie Cameron
2018-05-07 17:03:33 -07:00
parent 41a8a7d0d0
commit 85fa1722a1

View File

@@ -311,6 +311,7 @@ if ($file !~ /^\// && $file !~ /\|\s*$/) {
open(FILE, $file);
while(<FILE>) {
s/\r|\n//g;
next if (/^#/);
if (/^"([^"]*)"\s+"([^"]*)"$/) {
push(@rv, [ $1, $2 ]);
}