From owner-svn-src-all@FreeBSD.ORG Thu Dec 31 22:01:18 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CAB5106566C; Thu, 31 Dec 2009 22:01:18 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0D6A38FC1A; Thu, 31 Dec 2009 22:01:18 +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 nBVM1Hjs020708; Thu, 31 Dec 2009 22:01:17 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBVM1Hmu020706; Thu, 31 Dec 2009 22:01:17 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <200912312201.nBVM1Hmu020706@svn.freebsd.org> From: Jilles Tjoelker Date: Thu, 31 Dec 2009 22:01:17 +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: r201354 - head/bin/sh X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Dec 2009 22:01:18 -0000 Author: jilles Date: Thu Dec 31 22:01:17 2009 New Revision: 201354 URL: http://svn.freebsd.org/changeset/base/201354 Log: sh(1): Correct two places where "$@" lacked necessary quotes. MFC after: 1 week Modified: head/bin/sh/sh.1 Modified: head/bin/sh/sh.1 ============================================================================== --- head/bin/sh/sh.1 Thu Dec 31 21:08:13 2009 (r201353) +++ head/bin/sh/sh.1 Thu Dec 31 22:01:17 2009 (r201354) @@ -865,7 +865,7 @@ command is: If .Ic in and the following words are omitted, -.Ic in Li $@ +.Ic in Li \&"$@\&" is used instead. The words are expanded, and then the list is executed repeatedly with the variable set to each word in turn. @@ -1080,7 +1080,7 @@ and is .Dq Li "def ghi" , then -.Dq Li $@ +.Li \&"$@\&" expands to the two arguments: .Bd -literal -offset indent