Blame test/arrayprm2.awk

Packit 575503
# From spcecdt@armory.com  Wed Apr 30 11:08:48 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 h3U7uZWr015489
Packit 575503
# 	for <arnold@localhost>; Wed, 30 Apr 2003 11:08:48 +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); Wed, 30 Apr 2003 11:08:48 +0300 (IDT)
Packit 575503
# Received: by actcom.co.il (mbox arobbins)
Packit 575503
#  (with Cubic Circle's cucipop (v1.31 1998/05/13) Wed Apr 30 11:05:01 2003)
Packit 575503
# X-From_: spcecdt@armory.com Wed Apr 30 04:06:46 2003
Packit 575503
# Received: from smtp1.actcom.net.il by actcom.co.il  with ESMTP
Packit 575503
# 	(8.11.6/actcom-0.2) id h3U16iv04111 for <arobbins@actcom.co.il>;
Packit 575503
# 	Wed, 30 Apr 2003 04:06:45 +0300 (EET DST)  
Packit 575503
# 	(rfc931-sender: mail.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 h3U16nEv009589
Packit 575503
# 	for <arobbins@actcom.co.il>; Wed, 30 Apr 2003 04:06:50 +0300
Packit 575503
# Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164])
Packit 575503
# 	by f7.net (8.11.7/8.11.6) with ESMTP id h3U16gj29182
Packit 575503
# 	for <arnold@skeeve.com>; Tue, 29 Apr 2003 21:06:42 -0400
Packit 575503
# Received: from monty-python.gnu.org ([199.232.76.173])
Packit 575503
# 	by fencepost.gnu.org with esmtp (Exim 4.10)
Packit 575503
# 	id 19Ag3W-00029w-00
Packit 575503
# 	for bug-gawk@gnu.org; Tue, 29 Apr 2003 21:06:42 -0400
Packit 575503
# Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13)
Packit 575503
# 	id 19Ag1V-0001AN-00
Packit 575503
# 	for bug-gawk@gnu.org; Tue, 29 Apr 2003 21:04:39 -0400
Packit 575503
# Received: from deepthought.armory.com ([192.122.209.42] helo=armory.com)
Packit 575503
# 	by monty-python.gnu.org with smtp (Exim 4.10.13)
Packit 575503
# 	id 19Ag1V-0001A3-00
Packit 575503
# 	for bug-gawk@gnu.org; Tue, 29 Apr 2003 21:04:37 -0400
Packit 575503
# Date: Tue, 29 Apr 2003 18:04:35 -0700
Packit 575503
# From: "John H. DuBois III" <spcecdt@armory.com>
Packit 575503
# To: bug-gawk@gnu.org
Packit 575503
# Subject: gawk 3.1.2a bug
Packit 575503
# Message-ID: <20030430010434.GA4278@armory.com>
Packit 575503
# Mime-Version: 1.0
Packit 575503
# Content-Type: text/plain; charset=us-ascii
Packit 575503
# Content-Disposition: inline
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-Spam-Status: No, hits=-7.2 required=5.0
Packit 575503
# 	tests=SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01,USER_AGENT,
Packit 575503
# 	      USER_AGENT_MUTT
Packit 575503
# 	version=2.41
Packit 575503
# X-Spam-Level: 
Packit 575503
# X-SpamBouncer: 1.4 (10/07/01)
Packit 575503
# X-SBClass: OK
Packit 575503
# Status: RO
Packit 575503
# 
Packit 575503
# gawk-3.1.2a 'BEGIN {foo(bar)};function foo(baz){split("x",baz)}'
Packit 575503
# gawk-3.1.2a: cmd. line:1: fatal: split: second argument is not an array
Packit 575503
# 
Packit 575503
# 	John
Packit 575503
# -- 
Packit 575503
# John DuBois  spcecdt@armory.com  KC6QKZ/AE  http://www.armory.com/~spcecdt/
Packit 575503
# 
Packit 575503
BEGIN {
Packit 575503
	foo(bar)
Packit 575503
}
Packit 575503
Packit 575503
function foo(baz)
Packit 575503
{
Packit 575503
	split("x", baz)
Packit 575503
}