Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Oct 2016 23:30:24 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r306887 - projects/doctools/usr.bin/man
Message-ID:  <201610082330.u98NUOUl018105@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sat Oct  8 23:30:24 2016
New Revision: 306887
URL: https://svnweb.freebsd.org/changeset/base/306887

Log:
  Fix man -t with heirloom doctools

Modified:
  projects/doctools/usr.bin/man/man.sh

Modified: projects/doctools/usr.bin/man/man.sh
==============================================================================
--- projects/doctools/usr.bin/man/man.sh	Sat Oct  8 23:29:59 2016	(r306886)
+++ projects/doctools/usr.bin/man/man.sh	Sat Oct  8 23:30:24 2016	(r306887)
@@ -323,9 +323,10 @@ man_display_page() {
 
 	if ! eval "$cattool $manpage | $testline" ;then
 		if which -s picpack; then
-			pipeline="soelim | tbl | eqn | nroff -u1 -Tlocale -man - | col -x"
 			if [ -z "$tflags" ]; then
-				pipeline="${pipeline} | $MANPAGER"
+				pipeline="soelim | tbl | eqn | troff -u1 -Tps -man - | dpost"
+			else
+				pipeline="soelim | tbl | eqn | nroff -u1 -Tlocale -man - | col -x | $MANPAGER"
 			fi
 		elif which -s groff; then
 			man_display_page_groff



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610082330.u98NUOUl018105>