From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: rain1@openmailbox.org Newsgroups: gmane.lisp.guile.devel Subject: include bug in guile Date: Tue, 29 Mar 2016 18:16:44 +0100 Message-ID: <314fdd510b24fc4580a47e0da868d3ba@openmailbox.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1459283308 22057 80.91.229.3 (29 Mar 2016 20:28:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 29 Mar 2016 20:28:28 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Mar 29 22:28:15 2016 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 1al0FK-0004yR-PU for guile-devel@m.gmane.org; Tue, 29 Mar 2016 22:28:14 +0200 Original-Received: from localhost ([::1]:49848 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1al0FK-0001qs-3u for guile-devel@m.gmane.org; Tue, 29 Mar 2016 16:28:14 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:59123) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akxG6-0005qA-ID for guile-devel@gnu.org; Tue, 29 Mar 2016 13:16:54 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1akxG1-0006Sr-Gr for guile-devel@gnu.org; Tue, 29 Mar 2016 13:16:50 -0400 Original-Received: from mail2.openmailbox.org ([62.4.1.33]:47179) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akxG1-0006Sl-6c for guile-devel@gnu.org; Tue, 29 Mar 2016 13:16:45 -0400 Original-Received: by mail2.openmailbox.org (Postfix, from userid 1004) id BE5A02ACC8A8; Tue, 29 Mar 2016 19:16:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=openmailbox.org; s=openmailbox; t=1459271804; bh=rBxsFuAHjSmocNtvHDsFXM12hdnGeDpehkMrsiLs3Y0=; h=Date:From:To:Subject:From; b=jckmlY9UyvLA6lObwcjNi41z5GgUbrY3rPqnzxDmOyHDwMbPdPOg+yF6J1zrCmaHz FcV7PU9FBg5yRI6a7P9sSfTc0lTSKuLbRq7uB7z34jeNIl/x9LDbcfKUrmVg1NJwQ4 T0qOP47+TPreHDlJNM/GEG6R/U1G4uWaQsmT9V28= Original-Received: from www.openmailbox.org (openmailbox-b1 [10.91.69.218]) by mail2.openmailbox.org (Postfix) with ESMTP id 9FCE22ACC53E for ; Tue, 29 Mar 2016 19:16:44 +0200 (CEST) X-Sender: rain1@openmailbox.org User-Agent: Roundcube Webmail/1.0.6 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 62.4.1.33 X-Mailman-Approved-At: Tue, 29 Mar 2016 16:28:04 -0400 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:18250 Archived-At: I think this is a bug in guile relating to "include": a.scm: (define a 1) b.scm: (include "a.scm") (display a) (newline) guile -l b.scm # prints 1 now update a.scm: (define a 2) guile -l b.scm # still prints 1