From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QoyOW-00069b-Gc for garchives@archives.gentoo.org; Thu, 04 Aug 2011 13:55:28 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89D8A21C1F8; Thu, 4 Aug 2011 13:53:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5F39F21C1E0 for ; Thu, 4 Aug 2011 13:53:41 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E54CE2AC00C for ; Thu, 4 Aug 2011 13:53:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 464BB80043 for ; Thu, 4 Aug 2011 13:53:40 +0000 (UTC) From: "Petteri Räty" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petteri Räty" Message-ID: <81e8d87cad6f45db77cc8f0be9a382e6c44489a2.betelgeuse@gentoo> Subject: [gentoo-commits] proj/libbash:master commit in: scripts/, bashast/ X-VCS-Repository: proj/libbash X-VCS-Files: bashast/bashast.g scripts/var_def.bash X-VCS-Directories: scripts/ bashast/ X-VCS-Committer: betelgeuse X-VCS-Committer-Name: Petteri Räty X-VCS-Revision: 81e8d87cad6f45db77cc8f0be9a382e6c44489a2 Date: Thu, 4 Aug 2011 13:53:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: a34e91b5955bf30457d91e4ba5f40732 commit: 81e8d87cad6f45db77cc8f0be9a382e6c44489a2 Author: Mu Qiao gentoo org> AuthorDate: Thu Jul 21 10:07:57 2011 +0000 Commit: Petteri R=C3=A4ty gentoo org> CommitDate: Tue Aug 2 07:46:29 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/libbash.git;a= =3Dcommit;h=3D81e8d87c Parser: support '@' in non-quoted string --- bashast/bashast.g | 2 +- scripts/var_def.bash | 2 ++ 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/bashast/bashast.g b/bashast/bashast.g index 6566a5b..b380379 100644 --- a/bashast/bashast.g +++ b/bashast/bashast.g @@ -660,7 +660,7 @@ ns_string_part |OTHER|EQUALS|PCT|PCTPCT|PLUS|MINUS|DOT|DOTDOT|COLON|TEST_EXPR |TILDE|MUL_ASSIGN|DIVIDE_ASSIGN|MOD_ASSIGN|PLUS_ASSIGN|MINUS_ASSIGN |LSHIFT_ASSIGN|RSHIFT_ASSIGN|AND_ASSIGN|XOR_ASSIGN|LSQUARE|RSQUARE - |OR_ASSIGN|CARET|POUND|POUNDPOUND|COMMA|EXPORT|LOCAL; + |OR_ASSIGN|CARET|POUND|POUNDPOUND|COMMA|EXPORT|LOCAL|AT; =20 escaped_character : ESC diff --git a/scripts/var_def.bash b/scripts/var_def.bash index 6dc83dd..09c07c6 100644 --- a/scripts/var_def.bash +++ b/scripts/var_def.bash @@ -82,3 +82,5 @@ function foo() { echo ${bar[@]} } foo +bar=3D@ +echo $bar