From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark Harig Newsgroups: gmane.lisp.guile.bugs Subject: Errors using `reload' command Date: Thu, 03 Feb 2011 14:18:38 -0500 Message-ID: <8CD91EE4B5F7F3C-2564-1D76E@webmail-m030.sysops.aol.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1296762331 22234 80.91.229.12 (3 Feb 2011 19:45:31 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 3 Feb 2011 19:45:31 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Feb 03 20:45:27 2011 Return-path: Envelope-to: guile-bugs@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 1Pl57F-0002e7-7n for guile-bugs@m.gmane.org; Thu, 03 Feb 2011 20:45:26 +0100 Original-Received: from localhost ([127.0.0.1]:60423 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pl4hp-000227-Lm for guile-bugs@m.gmane.org; Thu, 03 Feb 2011 14:19:01 -0500 Original-Received: from [140.186.70.92] (port=54458 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pl4hi-0001zx-61 for bug-guile@gnu.org; Thu, 03 Feb 2011 14:18:55 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pl4hh-0003Bi-28 for bug-guile@gnu.org; Thu, 03 Feb 2011 14:18:54 -0500 Original-Received: from imr-da01.mx.aol.com ([205.188.105.143]:39173) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pl4hg-0003Aw-Us for bug-guile@gnu.org; Thu, 03 Feb 2011 14:18:52 -0500 Original-Received: from imo-ma03.mx.aol.com (imo-ma03.mx.aol.com [64.12.78.138]) by imr-da01.mx.aol.com (8.14.1/8.14.1) with ESMTP id p13JIjKo011417 for ; Thu, 3 Feb 2011 14:18:45 -0500 Original-Received: from idirectscm@aim.com by imo-ma03.mx.aol.com (mail_out_v42.9.) id 7.102c.5feb965 (44621) for ; Thu, 3 Feb 2011 14:18:42 -0500 (EST) Original-Received: from smtprly-md02.mx.aol.com (smtprly-md02.mx.aol.com [64.12.143.155]) by cia-mc01.mx.aol.com (v129.8) with ESMTP id MAILCIAMC012-d41b4d4aff8e2e1; Thu, 03 Feb 2011 14:18:42 -0500 Original-Received: from webmail-m030 (webmail-m030.sim.aol.com [64.12.101.213]) by smtprly-md02.mx.aol.com (v129.8) with ESMTP id MAILSMTPRLYMD021-d41b4d4aff8e2e1; Thu, 03 Feb 2011 14:18:38 -0500 X-MB-Message-Source: WebUI X-AOL-IP: 98.185.24.91 X-MB-Message-Type: User X-Mailer: AIM WebMail 33189-STANDARD Original-Received: from 98.185.24.91 by webmail-m030.sysops.aol.com (64.12.101.213) with HTTP (WebMailUI); Thu, 03 Feb 2011 14:18:38 -0500 X-AOL-SENDER: idirectscm@aim.com X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 205.188.105.143 X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:5073 Archived-At: The Guile REPL's `reload' command does not always reload modules successfully. Below is a copy of a guile session demonstrating some instances in which the `reload' command fails, along with examples of the command completing successfully. [~]$ guile --no-autocompile GNU Guile 1.9.15 Copyright (C) 1995-2010 Free Software Foundation, Inc. Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'. This program is free software, and you are welcome to redistribute it under certain conditions; type `,show c' for details. Enter `,help' for help. scheme@(guile-user)> (version) $1 =3D "1.9.15" scheme@(guile-user)> %load-path $2 =3D ("/usr/local/share/guile/2.0" "/usr/local/share/guile/site/2.0"=20 "/usr/local/share/guile/site" "/usr/local/share/guile") scheme@(guile-user)> ,h use Usage: import [MODULE ...] Import modules / List those imported. scheme@(guile-user)> ,use (guile) (system base compile) (ice-9 readline) (ice-9 readline) (ice-9 r5rs) (ice-9 session) (ice-9 regex) (ice-9 threads) (value-history) [Note that "(ice-9 readline)" is listed twice, above. This is not a=20 transcription error.] scheme@(guile-user)> ,h -c re Usage: reload [MODULE] Reload the given module, or the current module if none was given. scheme@(guile-user)> ,re While executing meta-command: ERROR: unknown file name for module # scheme@(guile-user)> ,re (system base compile) scheme@(guile-user)> ,re (ice-9 r5rs) scheme@(guile-user)> ,re (ice-9 session) scheme@(guile-user)> ,re (ice-9 regex) scheme@(guile-user)> ,re (ice-9 threads) scheme@(guile-user)> ,re (ice-9 readline) While executing meta-command: ERROR: In procedure primitive-load-path: ERROR: Unable to find file "guile-readline/ice-9/readline.scm" in load=20 path scheme@(guile-user)> ,re (value-history) While executing meta-command: ERROR: unknown file name for module # scheme@(guile-user)> ,re (guile) While executing meta-command: ERROR: unknown file name for module # scheme@(guile-user)> ,q [~]$