mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-31 23:02:05 +00:00
- (djm) Fix .Nm in mdoc2man.pl from pspencer@fields.utoronto.ca
This commit is contained in:
parent
bd63874d4b
commit
5efd71038d
@ -1,5 +1,6 @@
|
|||||||
20020417
|
20020417
|
||||||
- (djm) Tell users to configure /dev/random support into OpenSSL in INSTALL
|
- (djm) Tell users to configure /dev/random support into OpenSSL in INSTALL
|
||||||
|
- (djm) Fix .Nm in mdoc2man.pl from pspencer@fields.utoronto.ca
|
||||||
|
|
||||||
20020415
|
20020415
|
||||||
- (djm) Unbreak "make install". Fix from Darren Tucker <dtucker@zip.com.au>
|
- (djm) Unbreak "make install". Fix from Darren Tucker <dtucker@zip.com.au>
|
||||||
@ -8251,4 +8252,4 @@
|
|||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2057 2002/04/17 02:22:58 djm Exp $
|
$Id: ChangeLog,v 1.2058 2002/04/17 02:30:45 djm Exp $
|
||||||
|
@ -318,11 +318,13 @@ sub ParseMacro # ($line)
|
|||||||
|
|
||||||
if (/^Nm$/)
|
if (/^Nm$/)
|
||||||
{
|
{
|
||||||
$name = shift @words
|
my $n = $name;
|
||||||
|
$n = shift @words
|
||||||
if (@words > 0);
|
if (@words > 0);
|
||||||
|
$name = $n unless $name;
|
||||||
$retval .= ".br\n"
|
$retval .= ".br\n"
|
||||||
if ($synopsis);
|
if ($synopsis);
|
||||||
$retval .= "\\fB$name\\fP";
|
$retval .= "\\fB$n\\fP";
|
||||||
$nospace = 1
|
$nospace = 1
|
||||||
if (! $nospace && $words[0] =~ m/^[\.,]/);
|
if (! $nospace && $words[0] =~ m/^[\.,]/);
|
||||||
next;
|
next;
|
||||||
|
Loading…
Reference in New Issue
Block a user