Replacing tabs with spaces, trimming white space at EOL and newline at EOF (PHP only)
[squirrelmail.git] / po / charsetconvert.pl
index 3d4d4c1d9a69ddcab7647c54645258e585ecc3f8..7c3a52dd28a499c0c4e0003f3a94ef00d17814a2 100755 (executable)
@@ -14,16 +14,16 @@ while (<>) {
   unless (/^\#/) {
 
     ($orig_text, $unicode_text, $dummy, $name) = split /\t/;
-       
-    # oct does not only do what it's name suggest. If a string starts 
+
+    # oct does not only do what it's name suggest. If a string starts
     # with 0x it is interpreted as a hexadecimal value.
     $orig = oct $orig_text;
     $unicode = oct $unicode_text;
-       
+
     if ($orig >= $min) {
       print "            // $name\n";
       printf ('            $string = str_replace("\%o", "&#%d", $string);'."\n",
-             $orig, $unicode);
+              $orig, $unicode);
     }
-  } 
+  }
 }