From owner-svn-src-all@FreeBSD.ORG Fri Jan 8 16:28:17 2010 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 983D3106566B; Fri, 8 Jan 2010 16:28:17 +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 85D768FC0A; Fri, 8 Jan 2010 16:28:17 +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 o08GSH0x025287; Fri, 8 Jan 2010 16:28:17 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o08GSHrR025285; Fri, 8 Jan 2010 16:28:17 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201001081628.o08GSHrR025285@svn.freebsd.org> From: Jilles Tjoelker Date: Fri, 8 Jan 2010 16:28:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r201802 - stable/7/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: Fri, 08 Jan 2010 16:28:18 -0000 Author: jilles Date: Fri Jan 8 16:28:17 2010 New Revision: 201802 URL: http://svn.freebsd.org/changeset/base/201802 Log: MFC r201354: sh(1): Correct two places where "$@" lacked necessary quotes. Modified: stable/7/bin/sh/sh.1 Directory Properties: stable/7/bin/sh/ (props changed) Modified: stable/7/bin/sh/sh.1 ============================================================================== --- stable/7/bin/sh/sh.1 Fri Jan 8 16:14:41 2010 (r201801) +++ stable/7/bin/sh/sh.1 Fri Jan 8 16:28:17 2010 (r201802) @@ -856,7 +856,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. @@ -1071,7 +1071,7 @@ and is .Dq Li "def ghi" , then -.Dq Li $@ +.Li \&"$@\&" expands to the two arguments: .Bd -literal -offset indent