From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nala Ginrut Newsgroups: gmane.lisp.guile.devel Subject: include can't work Date: Fri, 15 Nov 2013 15:40:47 +0800 Organization: HFG Message-ID: <1384501247.11916.8.camel@Renee-desktop.suse> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1384501273 29126 80.91.229.3 (15 Nov 2013 07:41:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 15 Nov 2013 07:41:13 +0000 (UTC) To: guile-devel Development Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri Nov 15 08:41:16 2013 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VhE1j-00034u-FZ for guile-devel@m.gmane.org; Fri, 15 Nov 2013 08:41:15 +0100 Original-Received: from localhost ([::1]:59128 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VhE1j-00036r-27 for guile-devel@m.gmane.org; Fri, 15 Nov 2013 02:41:15 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56409) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VhE1V-00036l-Ah for guile-devel@gnu.org; Fri, 15 Nov 2013 02:41:09 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VhE1M-0007cg-TM for guile-devel@gnu.org; Fri, 15 Nov 2013 02:41:01 -0500 Original-Received: from mail-pd0-x234.google.com ([2607:f8b0:400e:c02::234]:46197) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VhE1M-0007cU-LE for guile-devel@gnu.org; Fri, 15 Nov 2013 02:40:52 -0500 Original-Received: by mail-pd0-f180.google.com with SMTP id v10so3113110pde.25 for ; Thu, 14 Nov 2013 23:40:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:subject:from:to:date:organization:content-type :mime-version:content-transfer-encoding; bh=3SU6fVEK6paNvZtgANFzAG7U8W011/nf1UGPwCXUmvg=; b=bfJa6OVBJbMJSToQ5baZtKAiBVAHTVF2NF2swt+uWYKvMc61Z0/rgsRfKJKVrcjcNc /oW7PIQ3GG+qRbzfyESRPtoozXu8D8iuUdDGcX55mA79tskbmE6DB0sjWCfDfsBALUFb sHlPcCbqXkqNzP9/xKIK+db/LW2mDMQ1Ub6qMbOtfX3oh6188M811mjcjpHXdcu909Ip KN9MU+wQtCBLqpNREce4quWKTbZRMaL0FLZ355cDPR8MNZhVoW4PHJsbx2jef1fTllCr kBSRRplIzwz+vxMK/P9FXxopail3Rl/lbqf6rVmXfrDTqcafaJGWUHAjIscpn/eb6hgp EBjg== X-Received: by 10.66.155.36 with SMTP id vt4mr5473913pab.93.1384501251237; Thu, 14 Nov 2013 23:40:51 -0800 (PST) Original-Received: from [147.2.147.115] ([203.192.156.9]) by mx.google.com with ESMTPSA id fb3sm2535853pbc.29.2013.11.14.23.40.49 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Thu, 14 Nov 2013 23:40:50 -0800 (PST) X-Mailer: Evolution 3.4.4 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c02::234 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:16730 Archived-At: I encountered a bug while trying include some file: --------------------------cut------------------------ scheme@(guile-user)> (include "aa.scm") While compiling expression: ERROR: In procedure string-length: Wrong type argument in position 1 (expecting string): #f --------------------------end------------------------ The content of aa.scm is trivial but I still list it: ------------------cut--------------- (let ((x (expt 2 10))) (display x)) ------------------end--------------- Don't argue with the meaning of aa.scm please, it's unrelated to this 'include' issue. Guile version: GNU Guile 2.0.9.92-d3606 Thanks!