1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- manServer.pl.orig 2017-11-27 23:19:27.000000000 -0500
+++ manServer.pl 2017-11-27 23:19:36.000000000 -0500
@@ -582,8 +582,8 @@
s,\\t,\t,g;
s,\\%, ,g;
- s,\\{,,g;
- s,\\},,g;
+ s,\\\{,,g;
+ s,\\\},,g;
s,\\$,,g;
s,\\e,\,g;
@@ -1953,9 +1953,9 @@
$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;
}
|