chiark / gitweb /
Commods (upload): Tolerate tabs (which are nowadays not printing it seems?!)
[ypp-sc-tools.db-live.git] / yarrg / Commods.pm
index 48caf79e9ba3f5ca1f0d2f158c4d8f36d18f242d..5d0ffe29fd46b8dd7b06802655b84d132ec9f100 100644 (file)
@@ -422,7 +422,7 @@ sub check_tsv_line ($$) {
     
     chomp($l) or &$bad_data('missing end-of-line');
 
-    $l !~ m/\P{IsPrint}/ or &$bad_data('nonprinting char(s) '.sprintf "%#x", ord $&);
+    $l =~ m/[\t [:graph:]]/ or &$bad_data('nonprinting char(s) '.sprintf "%#x", ord $&);
     my @v= split /\t/, $l, -1;
     @v==6 or &$bad_data('wrong number of fields');
     $v[1] =~ s/^\s+//; $v[1] =~ s/\s+$//; # ooo don't check :-(