diff options
author | Todd Lyons <tlyons@exim.org> | 2014-07-15 12:50:35 -0700 |
---|---|---|
committer | Todd Lyons <tlyons@exim.org> | 2014-07-15 12:50:35 -0700 |
commit | a2204cac393bb160ae7f253b9bb5280fc35ca3a3 (patch) | |
tree | 8284c42339b32e3eeeb047214083c54b628548b8 | |
parent | 1bd0d12bcbf4f51bd78c60d5bae01f1ff38c5a84 (diff) |
Fix regex for Suse when converting spec to ASCII
-rwxr-xr-x | doc/doc-docbook/Tidytxt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/doc-docbook/Tidytxt b/doc/doc-docbook/Tidytxt index d218189ea..9eb63dbcb 100755 --- a/doc/doc-docbook/Tidytxt +++ b/doc/doc-docbook/Tidytxt @@ -20,6 +20,8 @@ foreach $line (@lines) $line =~ s/\x{c2}\x{a0}/ /g; # (2) bullet -> asterisk $line =~ s/\x{e2}\x{97}\x{8f}/*/g; + $line =~ s/\x{e2}\x{80}\x{a2}/*/g; # OpenSUSE + $line =~ s/\x{e2}\x{96}\x{a1}/*/g; # OpenSUSE # (3a) horizontal box drawing -> hyphen $line =~ s/\x{e2}\x{94}[\x{80}\x{81}\x{84}\x{85}\x{88}\x{89}]/-/g; $line =~ s/\x{e2}\x{95}[\x{8c}\x{8d}\x{90}]/-/g; |