Skip to content

Commit e63e0d6

Browse files
committed
managen: insert final .fi for files ending with a quote
When an individual file ended with a quote (typically an example), the render function would return without ending the quote correctly with a ".fi" (fill in) in the manpage output. This made the additional text provided below to render wrongly. Closes #14048
1 parent ad7a20d commit e63e0d6

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

scripts/managen

+7-5
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,10 @@ sub render {
454454
print STDERR "$f:$line:1:ERROR: trailing blank line\n";
455455
exit 3;
456456
}
457+
if($quote) {
458+
# don't leave the quote "hanging"
459+
push @desc, ".fi\n" if($manpage);
460+
}
457461
if($tablemode) {
458462
# end of table
459463
push @desc, ".RE\n.IP\n" if($manpage);
@@ -673,9 +677,6 @@ sub single {
673677
}
674678
}
675679

676-
printdesc($manpage, 2, (@leading, @desc));
677-
undef @desc;
678-
679680
my @extra;
680681
if($multi eq "single") {
681682
push @extra, "${pre}If --$long is provided several times, the last set ".
@@ -706,15 +707,16 @@ sub single {
706707
}
707708
elsif($multi eq "per-URL") {
708709
push @extra,
709-
"${pre}--$long is associated with a single URL. Use it once per URL\n".
710+
"${pre}--$long is associated with a single URL. Use it once per URL ".
710711
"when you use several URLs in a command line.\n";
711712
}
712713
else {
713714
print STDERR "$f:$line:1:ERROR: unrecognized Multi: '$multi'\n";
714715
return 2;
715716
}
716717

717-
printdesc($manpage, 2, @extra);
718+
printdesc($manpage, 2, (@leading, @desc, @extra));
719+
undef @desc;
718720

719721
my @foot;
720722

tests/data/test1705

+10
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ If you think this option still does not give you enough details, consider using
7474
Note that verbose output of curl activities and network traffic might contain
7575
sensitive data, including usernames, credentials or secret data content. Be
7676
aware and be careful when sharing trace logs with others.
77+
78+
End with a quote
79+
80+
hello
7781
</file2>
7882
<file3 name="%LOGDIR/option2.md">
7983
---
@@ -217,6 +221,12 @@ Note that verbose output of curl activities and network traffic might contain
217221
sensitive data, including usernames, credentials or secret data content. Be
218222
aware and be careful when sharing trace logs with others.
219223

224+
End with a quote
225+
.nf
226+
227+
hello
228+
.fi
229+
220230
This option is global and does not need to be specified for each use of --next.
221231

222232
Providing --fakeitreal multiple times has no extra effect.

tests/data/test1706

+2-4
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,8 @@ DESCRIPTION
195195
logs with others.
196196

197197
This option is global and does not need to be specified for each
198-
use of --next.
199-
200-
Providing --fakeitreal multiple times has no extra effect. Disable
201-
it again with --no-fakeitreal.
198+
use of --next. Providing --fakeitreal multiple times has no extra
199+
effect. Disable it again with --no-fakeitreal.
202200

203201
Example:
204202
curl --verbose https://example.com

0 commit comments

Comments
 (0)