From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Noah Lavine Newsgroups: gmane.lisp.guile.devel Subject: Re: Odd Behavior Date: Mon, 31 Jan 2011 15:09:42 -0500 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1296504786 14047 80.91.229.12 (31 Jan 2011 20:13:06 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 31 Jan 2011 20:13:06 +0000 (UTC) Cc: guile-devel@gnu.org To: Andy Wingo Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jan 31 21:13:01 2011 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Pk07M-0001gi-MF for guile-devel@m.gmane.org; Mon, 31 Jan 2011 21:12:57 +0100 Original-Received: from localhost ([127.0.0.1]:33608 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pk07I-0007wg-8H for guile-devel@m.gmane.org; Mon, 31 Jan 2011 15:12:52 -0500 Original-Received: from [140.186.70.92] (port=60745 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pk04I-0006Kh-QB for guile-devel@gnu.org; Mon, 31 Jan 2011 15:09:54 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pk04F-0006xJ-EC for guile-devel@gnu.org; Mon, 31 Jan 2011 15:09:45 -0500 Original-Received: from mail-gy0-f169.google.com ([209.85.160.169]:49389) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pk04F-0006x6-Bd for guile-devel@gnu.org; Mon, 31 Jan 2011 15:09:43 -0500 Original-Received: by gyd10 with SMTP id 10so2721140gyd.0 for ; Mon, 31 Jan 2011 12:09:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=/QEA58ygcSMBXezkKknPyAj6mautj06tzzV7a59Gmz0=; b=EWmKOQf1aRVl81/Kic3MxN/jkQjbs6nEw2TawkZw9dW+anKP8n/ifKZcF35vn84RtN aDjzsD/vW4QFka1Ok8RER2fpIib7wAYij2Cx6Ta9wT2/bJwrOHe32jJ9WIdogkGnY5ul xd5phAzeXeGPQPmyxG/XrrtCHkIpu0NYkQMBs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=AEeTK9KVxv0dbm4fqQaEAWfPFT2+Y0Fu2jJCbOM+iwajwLm9tyxBRn91Sq/bMYG7c0 Lf9dFey4OZObZRtgOFc9PN74N6OBGFaEUft2QxTxuN+FIu1/uYxhUvCU3kOx64eLUE8c RS0gA6aJZN1zovvS1eluSRGyEz70OV6znqL2E= Original-Received: by 10.100.5.4 with SMTP id 4mr4136424ane.172.1296504582652; Mon, 31 Jan 2011 12:09:42 -0800 (PST) Original-Received: by 10.147.136.20 with HTTP; Mon, 31 Jan 2011 12:09:42 -0800 (PST) In-Reply-To: X-Google-Sender-Auth: GiMkx5o1z8eTongRnTx1NAepPdw X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.160.169 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:11458 Archived-At: Wow, great! On Mon, Jan 31, 2011 at 3:12 PM, Andy Wingo wrote: > On Mon 31 Jan 2011 19:44, Noah Lavine writes: > >> ;;; compiling test.scm >> ;;; WARNING: compilation of test.scm failed: >> ;;; key wrong-type-arg, throw_args (#f "Wrong type to apply: ~S" (#f) (#= f)) >> hello, world! > > Now it does: > > =A0 =A0scheme@(guile-user)> (load "/tmp/test.scm") > =A0 =A0;;; note: autocompilation is enabled, set GUILE_AUTO_COMPILE=3D0 > =A0 =A0;;; =A0 =A0 =A0 or pass the --no-autocompile argument to disable. > =A0 =A0;;; compiling /tmp/test.scm > =A0 =A0;;; WARNING: compilation of /tmp/test.scm failed: > =A0 =A0;;; key unbound-variable, throw_args (#f "Unbound variable: ~S" (c= odegen) #f) > =A0 =A0hello, world! > > Still ugly, but better. =A0Thanks for the example. > > A > -- > http://wingolog.org/ >