bug-kawa
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-kawa] [bug #49943] kawa (command-line program) hangs when importing


From: Per Bothner
Subject: [Bug-kawa] [bug #49943] kawa (command-line program) hangs when importing library twice
Date: Mon, 2 Jan 2017 00:22:06 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.100 Safari/537.36

Update of bug #49943 (project kawa):

                  Status:                    None => Confirmed              
             Assigned to:                    None => bothner                

    _______________________________________________________

Follow-up Comment #3:

When you do (include "128.sld") it parses "128.sld" and creates the (srfi 128)
module. The "module file" is the file that does the including, *not* the file
being included.  So the source file name of the (srfi 128) is something like
"/dev/pts/0".  This confuses Kawa when it tried to re-import (srfi 128): It
tries re-opening and re-reading /dev/pts/0.

As a work-around, you could use require instead of import:

(require srfi.128 "128.sld")

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?49943>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]