Blame test/arrayprm3.awk

Packit 575503
# From spcecdt@armory.com  Fri May  2 13:24:46 2003
Packit 575503
# Return-Path: <spcecdt@armory.com>
Packit 575503
# Received: from localhost (skeeve [127.0.0.1])
Packit 575503
# 	by skeeve.com (8.12.5/8.12.5) with ESMTP id h42AChum021950
Packit 575503
# 	for <arnold@localhost>; Fri, 2 May 2003 13:24:46 +0300
Packit 575503
# Received: from actcom.co.il [192.114.47.1]
Packit 575503
# 	by localhost with POP3 (fetchmail-5.9.0)
Packit 575503
# 	for arnold@localhost (single-drop); Fri, 02 May 2003 13:24:46 +0300 (IDT)
Packit 575503
# Received: by actcom.co.il (mbox arobbins)
Packit 575503
#  (with Cubic Circle's cucipop (v1.31 1998/05/13) Fri May  2 13:23:37 2003)
Packit 575503
# X-From_: spcecdt@armory.com Fri May  2 00:43:51 2003
Packit 575503
# Received: from smtp1.actcom.net.il by actcom.co.il  with ESMTP
Packit 575503
# 	(8.11.6/actcom-0.2) id h41Lhm500217 for <arobbins@actcom.co.il>;
Packit 575503
# 	Fri, 2 May 2003 00:43:49 +0300 (EET DST)  
Packit 575503
# 	(rfc931-sender: lmail.actcom.co.il [192.114.47.13])
Packit 575503
# Received: from f7.net (consort.superb.net [209.61.216.22])
Packit 575503
# 	by smtp1.actcom.net.il (8.12.8/8.12.8) with ESMTP id h41LiGcO022817
Packit 575503
# 	for <arobbins@actcom.co.il>; Fri, 2 May 2003 00:44:18 +0300
Packit 575503
# Received: from armory.com (deepthought.armory.com [192.122.209.42])
Packit 575503
# 	by f7.net (8.11.7/8.11.6) with SMTP id h41Lhj106516
Packit 575503
# 	for <arnold@skeeve.com>; Thu, 1 May 2003 17:43:46 -0400
Packit 575503
# Date: Thu, 1 May 2003 14:43:45 -0700
Packit 575503
# From: "John H. DuBois III" <spcecdt@armory.com>
Packit 575503
# To: Aharon Robbins <arnold@skeeve.com>
Packit 575503
# Subject: Re: gawk 3.1.2a bug
Packit 575503
# Message-ID: <20030501214345.GA24615@armory.com>
Packit 575503
# References: <200305011738.h41Hcg76017565@localhost.localdomain>
Packit 575503
# Mime-Version: 1.0
Packit 575503
# Content-Type: text/plain; charset=us-ascii
Packit 575503
# Content-Disposition: inline
Packit 575503
# In-Reply-To: <200305011738.h41Hcg76017565@localhost.localdomain>
Packit 575503
# User-Agent: Mutt/1.3.28i
Packit 575503
# X-Www: http://www.armory.com./~spcecdt/
Packit 575503
# Sender: spcecdt@armory.com
Packit 575503
# X-SpamBouncer: 1.4 (10/07/01)
Packit 575503
# X-SBClass: OK
Packit 575503
# Status: RO
Packit 575503
# 
Packit 575503
# On Thu, May 01, 2003 at 08:38:42PM +0300, Aharon Robbins wrote:
Packit 575503
# > > That worked, thanks.
Packit 575503
# > 
Packit 575503
# > Great.  Your report motivated me to find everywhere such additional
Packit 575503
# > code ought to be needed.  I think I did so.  --Arnold
Packit 575503
# 
Packit 575503
# Here's another one (perhaps fixed by your additional work):
Packit 575503
# 
Packit 575503
BEGIN { foo(a) }
Packit 575503
function foo(a) { bar(a); print "" in a }
Packit 575503
function bar(a) { a[""]; }
Packit 575503
# 
Packit 575503
# Prints 1 with gawk-3.1.1; 0 with 3.1.2a.
Packit 575503
# 
Packit 575503
# 	John
Packit 575503
# -- 
Packit 575503
# John DuBois  spcecdt@armory.com  KC6QKZ/AE  http://www.armory.com/~spcecdt/
Packit 575503
#