From owner-svn-src-projects@freebsd.org Sat Oct 8 23:30:25 2016 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A1CDC06D99 for ; Sat, 8 Oct 2016 23:30:25 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C5749BA; Sat, 8 Oct 2016 23:30:24 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u98NUOVV018106; Sat, 8 Oct 2016 23:30:24 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u98NUOUl018105; Sat, 8 Oct 2016 23:30:24 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201610082330.u98NUOUl018105@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 8 Oct 2016 23:30:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r306887 - projects/doctools/usr.bin/man X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Oct 2016 23:30:25 -0000 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