View | Details | Raw Unified | Return to bug 217 | Differences between
and this patch

Collapse All | Expand All

(-)openssh-3.1p1/mdoc2man.pl.orig (-2 / +4 lines)
Lines 318-328 Link Here
318
318
319
		if (/^Nm$/)
319
		if (/^Nm$/)
320
		{
320
		{
321
			$name = shift @words
321
			my $n = $name;
322
			$n = shift @words
322
				if (@words > 0);
323
				if (@words > 0);
324
			$name = $n unless $name;
323
			$retval .= ".br\n"
325
			$retval .= ".br\n"
324
				if ($synopsis);
326
				if ($synopsis);
325
			$retval .= "\\fB$name\\fP";
327
			$retval .= "\\fB$n\\fP";
326
			$nospace = 1
328
			$nospace = 1
327
				if (! $nospace && $words[0] =~ m/^[\.,]/);
329
				if (! $nospace && $words[0] =~ m/^[\.,]/);
328
			next;
330
			next;

Return to bug 217