From owner-svn-src-head@FreeBSD.ORG Sat Oct 2 06:55:13 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B282106576A; Sat, 2 Oct 2010 06:55:04 +0000 (UTC) (envelope-from gordon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B1BF48FC1D; Sat, 2 Oct 2010 06:55:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o926t4uM030489; Sat, 2 Oct 2010 06:55:04 GMT (envelope-from gordon@svn.freebsd.org) Received: (from gordon@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o926t41J030487; Sat, 2 Oct 2010 06:55:04 GMT (envelope-from gordon@svn.freebsd.org) Message-Id: <201010020655.o926t41J030487@svn.freebsd.org> From: Gordon Tetlow Date: Sat, 2 Oct 2010 06:55:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r213349 - head/usr.bin/man X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Oct 2010 06:55:13 -0000 Author: gordon Date: Sat Oct 2 06:55:04 2010 New Revision: 213349 URL: http://svn.freebsd.org/changeset/base/213349 Log: Fix up whatis/apropos issue displaying all output on a single due to forgotten quotes. Submitted by: Brandon Gooch Approved by: wes (mentor, implicit) Modified: head/usr.bin/man/man.sh Modified: head/usr.bin/man/man.sh ============================================================================== --- head/usr.bin/man/man.sh Sat Oct 2 06:54:59 2010 (r213348) +++ head/usr.bin/man/man.sh Sat Oct 2 06:55:04 2010 (r213349) @@ -719,11 +719,11 @@ search_whatis() { bad=${bad#\\n} if [ -n "$good" ]; then - echo -e $good | $PAGER + echo -e "$good" | $PAGER fi if [ -n "$bad" ]; then - echo -e $bad >&2 + echo -e "$bad" >&2 fi exit $rval