From owner-svn-src-all@FreeBSD.ORG Sat Oct 23 13:57:26 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 561E2106566B; Sat, 23 Oct 2010 13:57:26 +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 448338FC19; Sat, 23 Oct 2010 13:57:26 +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 o9NDvQX9088753; Sat, 23 Oct 2010 13:57:26 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9NDvQ5S088751; Sat, 23 Oct 2010 13:57:26 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201010231357.o9NDvQ5S088751@svn.freebsd.org> From: Jilles Tjoelker Date: Sat, 23 Oct 2010 13:57:26 +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: r214240 - 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: Sat, 23 Oct 2010 13:57:26 -0000 Author: jilles Date: Sat Oct 23 13:57:26 2010 New Revision: 214240 URL: http://svn.freebsd.org/changeset/base/214240 Log: MFC r197848: Clarify quoting of word in ${v=word} in sh(1). 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 Sat Oct 23 13:36:09 2010 (r214239) +++ stable/7/bin/sh/sh.1 Sat Oct 23 13:57:26 2010 (r214240) @@ -1221,6 +1221,9 @@ In all cases, the final value of .Ar parameter is substituted. +Quoting inside +.Ar word +does not prevent field splitting or pathname expansion. Only variables, not positional parameters or special parameters, can be assigned in this way.