diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-07-13 22:57:04 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-07-13 22:57:04 +0200 |
commit | 646efdf96dcf087ee69623c836082ff666ca36a6 (patch) | |
tree | 6e9fb21d31e3ef31df4154dd3a0d64a08381f707 | |
parent | 1e7b2ee391468b1d2aa0e23cadf8c1c05a925571 (diff) |
I hate character encoding issues
-rwxr-xr-x | bin/vwrap | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -33,6 +33,10 @@ if ($opts{'C'}) { run(\@ARGV, \undef, \$buf, \*STDERR); +$buf =~ s/ä/a/g; +$buf =~ s/ö/o/g; +$buf =~ s/ü/u/g; + my @lines = split(/\n/, $buf); if ($opts{'c'}) { |