From ad@dual.solvo.spb.su  Tue Feb  1 15:25:00 2000
Received: from dual.solvo.spb.su (dual.solvo.spb.su [195.201.44.111])
	by swi.psy.uva.nl (8.9.3/8.9.3) with ESMTP id PAA15141
	for <prolog@swi.psy.uva.nl>; Tue, 1 Feb 2000 15:24:33 +0100 (MET)
Received: from dual.loc.solvo.spb.su by dual.solvo.spb.su with esmtp
	(Smail3.2.0.103 #4) id m12FeEH-001VMwC; Tue, 1 Feb 2000 17:24:29 +0300 (MSK)
Date: Tue, 1 Feb 2000 17:24:23 +0300 (MSK)
From: Andrey Diatchkov <ad@dual.solvo.spb.su>
To: prolog@swi.psy.uva.nl
Subject: Problem with consult
Message-ID: <Pine.LNX.4.10.10002011645080.31606-100000@dual.solvo.spb.su>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

I can't execute consult(FileName) sometimes if exported procedure in
FileName is no defined.

Example:
file test_mod.pl
----------------
:- use_module([
                test_mod2
                ]).

file test_mod2.pl
-----------------
:- module(test_mod2,[
                test/0
                ]).

test_mod2:test/0 is not defined.
When i type consult(test_mod). (or [test_mod].) prolog is hanging. I use
SwiProlog 3.3.0#12.


