From: Michal Vaner Date: Sat, 25 Oct 2008 08:24:57 +0000 (+0200) Subject: Eat \r from comments X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=9c7de7153d727556caf68a736632810ce682b5f4;p=pciids.git Eat \r from comments --- diff --git a/PciIds/DBQ.pm b/PciIds/DBQ.pm index 2740de5..ac47610 100644 --- a/PciIds/DBQ.pm +++ b/PciIds/DBQ.pm @@ -225,6 +225,7 @@ sub spaceNorm( $ ) { s/[ \t]+/ /g; s/^\s//; s/\s$//; + s/\r//; return $_; }