15 lines
453 B
Plaintext
15 lines
453 B
Plaintext
$OpenBSD: patch-etc_texi2pod_pl,v 1.1 2019/04/16 15:35:30 naddy Exp $
|
|
|
|
Index: etc/texi2pod.pl
|
|
--- etc/texi2pod.pl.orig
|
|
+++ etc/texi2pod.pl
|
|
@@ -311,7 +311,7 @@ while(<$inf>) {
|
|
@columns = ();
|
|
for $column (split (/\s*\@tab\s*/, $1)) {
|
|
# @strong{...} is used a @headitem work-alike
|
|
- $column =~ s/^\@strong{(.*)}$/$1/;
|
|
+ $column =~ s/^\@strong\{(.*)\}$/$1/;
|
|
push @columns, $column;
|
|
}
|
|
$_ = "\n=item ".join (" : ", @columns)."\n";
|