From owner-freebsd-doc@FreeBSD.ORG Mon Sep 12 07:46:26 2005 Return-Path: X-Original-To: freebsd-doc@freebsd.org Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91D5816A41F for ; Mon, 12 Sep 2005 07:46:26 +0000 (GMT) (envelope-from ltsampros@upnet.gr) Received: from mail.vivodinet.gr (mail3.vivodinet.gr [80.76.39.13]) by mx1.FreeBSD.org (Postfix) with SMTP id DAB0543D45 for ; Mon, 12 Sep 2005 07:46:24 +0000 (GMT) (envelope-from ltsampros@upnet.gr) Received: (qmail 10066 invoked from network); 12 Sep 2005 07:46:21 -0000 Received: from dslcustomer-222-89.vivodi.gr (HELO bifteki.home.net) (83.171.222.89) by 0 with SMTP; 12 Sep 2005 07:46:21 -0000 Received: from bifteki.home.net (localhost [127.0.0.1]) by bifteki.home.net (8.13.4/8.13.3) with ESMTP id j8CAkLuC012943; Mon, 12 Sep 2005 10:46:22 GMT (envelope-from gaghiel@bifteki.home.net) Received: (from gaghiel@localhost) by bifteki.home.net (8.13.4/8.13.3/Submit) id j8CAkLjj012942; Mon, 12 Sep 2005 10:46:21 GMT (envelope-from gaghiel) Date: Mon, 12 Sep 2005 10:46:21 +0000 From: Leonidas Tsampros To: "Simon L. Nielsen" Message-ID: <20050912104621.GA12835@bifteki.lan> References: <200509112100.j8BL0asq017028@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200509112100.j8BL0asq017028@freefall.freebsd.org> User-Agent: Mutt/1.5.9i Cc: freebsd-doc@freebsd.org Subject: Re: docs/85986: FreeBSD keyword missing if you display security(7) with apropos X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Sep 2005 07:46:26 -0000 On Sun, Sep 11, 2005 at 09:00:36PM +0000, Simon L. Nielsen wrote: > The following reply was made to PR docs/85986; it has been noted by GNATS. > > From: "Simon L. Nielsen" > To: Matthias Schmidt > Cc: freebsd-gnats-submit@FreeBSD.org > Subject: Re: docs/85986: FreeBSD keyword missing if you display security(7) with apropos > Date: Sun, 11 Sep 2005 22:54:09 +0200 > > --8t9RHnE3ZwKMSgU+ > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > On 2005.09.11 20:12:46 +0000, Matthias Schmidt wrote: > > > If you type apropos security to get the security(7) man page the word "Fr= > eeBSD" is missing, > >=20 > > matthias@c0re:/ % apropos security > > security(7) - introduction to security under > > ^^^^ > > I would say this should be fixed in apropos rather than adding a > workaround to a specific manual page, especially since I would suspect > that other manual pages are also affected. > > That said, I have no idea how complicated it would be to fix it in > apropos. > > --=20 > Simon L. Nielsen I took a look to src/gnu/usr.bin/man/apropos/apropos.sh , and really apropos is nothing more than a grep -Ehi. The problem is that grep is just working right. It doesn't find the word 'FreeBSD' in the description line (where it got the 'security' match) so grep cannot display that word.