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 1Q8ReT-0004qV-IX for garchives@archives.gentoo.org; Sat, 09 Apr 2011 06:28:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDA841C009; Sat, 9 Apr 2011 06:27:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8F2091C009 for ; Sat, 9 Apr 2011 06:27:37 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 15C991B4051 for ; Sat, 9 Apr 2011 06:27:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E889580072 for ; Sat, 9 Apr 2011 06:27:35 +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: <65ce12f8726ace389fb49b479c4a142eeec8eeeb.betelgeuse@gentoo> Subject: [gentoo-commits] proj/libbash:master commit in: bashast/ X-VCS-Repository: proj/libbash X-VCS-Files: bashast/bashast.g X-VCS-Directories: bashast/ X-VCS-Committer: betelgeuse X-VCS-Committer-Name: Petteri Räty X-VCS-Revision: 65ce12f8726ace389fb49b479c4a142eeec8eeeb Date: Sat, 9 Apr 2011 06:27:35 +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: 0a26d120d27287a2f4df9f9af402d33d commit: 65ce12f8726ace389fb49b479c4a142eeec8eeeb Author: Petteri R=C3=A4ty petteriraty eu> AuthorDate: Fri Apr 8 14:43:30 2011 +0000 Commit: Petteri R=C3=A4ty gentoo org> CommitDate: Sat Apr 9 06:13:46 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/libbash.git;a= =3Dcommit;h=3D65ce12f8 Remove antlr warnings for process_substitution --- bashast/bashast.g | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bashast/bashast.g b/bashast/bashast.g index c20cef4..0580b26 100644 --- a/bashast/bashast.g +++ b/bashast/bashast.g @@ -485,7 +485,7 @@ arithmetic_condition arithmetic_assignment : (name BLANK!* (EQUALS|MUL_ASSIGN|DIVIDE_ASSIGN|MOD_ASSIGN|PLUS_ASSIGN= |MINUS_ASSIGN|LSHIFT_ASSIGN|RSHIFT_ASSIGN|AND_ASSIGN|XOR_ASSIGN|OR_ASSIGN= )^ BLANK!*)? logicor; process_substitution - : (dir=3DLESS_THAN|dir=3DGREATER_THAN)LPAREN BLANK* clist BLANK* RPAREN= -> ^(PROCESS_SUBSTITUTION $dir clist); + : (dir=3DLESS_THAN|dir=3DGREATER_THAN)LPAREN clist BLANK* RPAREN -> ^(P= ROCESS_SUBSTITUTION $dir clist); //the biggie: functions function: FUNCTION BLANK+ name (BLANK* parens)? wspace compound_command = redirect* -> ^(FUNCTION name compound_command redirect*) | name BLANK* parens wspace compound_command redirect* -> ^(FUNCTION["f= unction"] name compound_command redirect*);