diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2017-04-22 23:18:18 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2017-04-22 23:22:15 +0200 |
commit | 23fe6c03f3f25e40b49fdb38f994d4aa1dc18f7f (patch) | |
tree | fbdfc44a4be95776917e59070a6496bd909feeca | |
parent | 1ae9a722d6b01743e47531a63f3ba7ef0f088bf2 (diff) | |
download | fetchmail-23fe6c03f3f25e40b49fdb38f994d4aa1dc18f7f.tar.gz fetchmail-23fe6c03f3f25e40b49fdb38f994d4aa1dc18f7f.tar.bz2 fetchmail-23fe6c03f3f25e40b49fdb38f994d4aa1dc18f7f.zip |
Avoid deprecated regexps in manServer.pl
-rwxr-xr-x | dist-tools/manServer.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist-tools/manServer.pl b/dist-tools/manServer.pl index 7b968117..6573f650 100755 --- a/dist-tools/manServer.pl +++ b/dist-tools/manServer.pl @@ -582,7 +582,7 @@ sub outputLine s,\\t,\t,g; s,\\%, ,g; - s,\\{,,g; + s,\\\{,,g; s,\\},,g; s,\\$,,g; @@ -1953,9 +1953,9 @@ sub processTable $rowref->[$troffCol] .= "$style2</TD>"; ++$troffCol; } - elsif ($col =~ m/T{/) #} + elsif ($col =~ m/T\{/) #} { - $col =~ s/T{//; #} + $col =~ s/T\{//; #} $rowref->[$troffCol] = "<TD$align>$style1$col"; $troffMultiline = 1; } |