From owner-svn-src-stable@FreeBSD.ORG Fri May 21 19:22:51 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CFCD106566B; Fri, 21 May 2010 19:22:51 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (unknown [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EF4138FC1D; Fri, 21 May 2010 19:22:50 +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 o4LJMotv013099; Fri, 21 May 2010 19:22:50 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o4LJMoIm013097; Fri, 21 May 2010 19:22:50 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201005211922.o4LJMoIm013097@svn.freebsd.org> From: Marius Strobl Date: Fri, 21 May 2010 19:22:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r208398 - stable/8/tools/regression/usr.bin/sed X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 May 2010 19:22:51 -0000 Author: marius Date: Fri May 21 19:22:50 2010 New Revision: 208398 URL: http://svn.freebsd.org/changeset/base/208398 Log: MFC: r197357 Describe how other systems treat this case. Modified: stable/8/tools/regression/usr.bin/sed/multitest.t Directory Properties: stable/8/tools/regression/usr.bin/sed/ (props changed) stable/8/tools/regression/usr.bin/sed/regress.multitest.out/ (props changed) Modified: stable/8/tools/regression/usr.bin/sed/multitest.t ============================================================================== --- stable/8/tools/regression/usr.bin/sed/multitest.t Fri May 21 19:21:47 2010 (r208397) +++ stable/8/tools/regression/usr.bin/sed/multitest.t Fri May 21 19:22:50 2010 (r208398) @@ -438,7 +438,11 @@ u2/g' lines1 # This is a matter of interpretation # POSIX 1003.1, 2004 says "Within the BRE and the replacement, # the BRE delimiter itself can be used as a *literal* character - # if it is preceded by a backslash + # if it is preceded by a backslash" + # SunOS 5.1 /usr/bin/sed and Mac OS X follow the literal POSIX + # interpretation. + # GNU sed version 4.1.5 treats \[ as the beginning of a character + # set specification (both with --posix and without). mark '8.19' ; sed 's/l/[/' lines1 | $SED -e 's[\[.[X[' mark '8.20' ; sed 's/l/[/' lines1 | $SED -e 's[\[.[X\[[' }