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 1QCVYp-00015l-77 for garchives@archives.gentoo.org; Wed, 20 Apr 2011 11:27:07 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EA261C083; Wed, 20 Apr 2011 11:26:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 28BA31C083 for ; Wed, 20 Apr 2011 11:26:15 +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 B12B71B405C for ; Wed, 20 Apr 2011 11:26:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 9C9DA8022C for ; Wed, 20 Apr 2011 11:26:12 +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: 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: a404d5b6392cb732cb7ec9c811303c92980e39ca Date: Wed, 20 Apr 2011 11:26:12 +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: 6aeaa00a47fd69f060829ef31a29f77c commit: a404d5b6392cb732cb7ec9c811303c92980e39ca Author: Petteri R=C3=A4ty petteriraty eu> AuthorDate: Tue Apr 19 16:42:09 2011 +0000 Commit: Petteri R=C3=A4ty gentoo org> CommitDate: Wed Apr 20 11:22:48 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/libbash.git;a= =3Dcommit;h=3Da404d5b6 Parser: typo fix opterator to operator --- bashast/bashast.g | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bashast/bashast.g b/bashast/bashast.g index d789acd..a2b176d 100644 --- a/bashast/bashast.g +++ b/bashast/bashast.g @@ -505,11 +505,11 @@ logicor : logicand (LOGICOR^ BLANK!* logicand)*; arithmetic_condition : cnd=3Dlogicor QMARK t=3Dlogicor COLON f=3Dlogicor -> ^(ARITHMETIC_CON= DITION $cnd $t $f); =20 -arithmetic_assignment_opterator +arithmetic_assignment_operator : EQUALS|MUL_ASSIGN|DIVIDE_ASSIGN|MOD_ASSIGN|PLUS_ASSIGN|MINUS_ASSIGN|L= SHIFT_ASSIGN|RSHIFT_ASSIGN|AND_ASSIGN|XOR_ASSIGN|OR_ASSIGN; =20 arithmetic_assignment - : ((var_name_no_digit|arithmetic_var_ref) BLANK!* arithmetic_assignment= _opterator^ BLANK!*)? logicor; + : ((var_name_no_digit|arithmetic_var_ref) BLANK!* arithmetic_assignment= _operator^ BLANK!*)? logicor; arithmetic : arithmetic_condition | arithmetic_assignment;