From nangelop@csd.abdn.ac.uk  Mon Jun 19 12:00:28 2000
Received: from pigeon.csd.abdn.ac.uk (root@pigeon.csd.abdn.ac.uk [139.133.200.15])
	by swi.psy.uva.nl (8.9.3/8.9.3) with ESMTP id MAA19973
	for <prolog@swi.psy.uva.nl>; Mon, 19 Jun 2000 12:00:28 +0200 (MET DST)
Received: from kea (nangelop@kea [139.133.200.24])
	by pigeon.csd.abdn.ac.uk (8.9.3/8.9.3) with ESMTP id LAA26096;
	Mon, 19 Jun 2000 11:01:08 +0100 (BST)
Date: Mon, 19 Jun 2000 11:01:08 +0100
From: Nicos Angelopoulos <nangelop@csd.abdn.ac.uk>
To: "Andreas Kaltenbrunner (Dipl.A.Leitsch)" <kalt@logic.at>
cc: prolog@swi.psy.uva.nl
Subject: Re: Suppress compiled message
In-Reply-To: <Pine.OSF.4.10.10006191121280.20927-100000@alpha.logic.tuwien.ac.at>
Message-ID: <Pine.SGI.4.21.0006191049380.460620-100000@kea.csd.abdn.ac.uk>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII



hi, 

there are two ways i know of, 

1. redirect your unix output with something like, 

	 pl -g main. -o a.out -c words.pro >& /dev/vull

	(or to a file if you think there are other errors)

2. be inderict in loading the source,

pl -g 'load_files(words,[silent(true)]),main,halt. -o a.out


	(in the above i assumed you renamed words.pro to words.pl,
	 if you dont want to do that you need to put escaped ' 
	 around words.pro, or such like )

i dont know if the above do exactly what you want
but they should give enough of a lead

regards
nicos
	

On Mon, 19 Jun 2000, Andreas Kaltenbrunner (Dipl.A.Leitsch) wrote:

> Hello
> 
> How can i suppress messages of type 
> 
> words.pro compiled, 0.03 sec, 70,032 bytes.
> 
> after commands of type
> 
> pl -g main. -o a.out -c words.pro
> 
> 
> Thanks,
> Andreas Kaltenbrunner
> 

