Subject: Re: "Converted" messages
From: rpw3@rpw3.org (Rob Warnock)
Date: Fri, 21 Oct 2005 06:40:37 -0500
Newsgroups: comp.lang.lisp
Message-ID: <AridnT1v8qgoTsXeRVn-sA@speakeasy.net>
Philippe Lorin  <palpalpalpal@gmail.com> wrote:
+---------------
| Why do I get the following message:
|   ; Converted F.
| when running the following code (using CMUCL):
|   (flet () (defun f ()))
+---------------

See "cmcul/src/compiler/ir1tran.lisp". It's a compiler note that
conversion from lambda form to IR1 form [an internal representation]
has been done. [I think...]

+---------------
| I get a lot of these messages and I'd be happy to get rid of them, 
+---------------

This should do it:

    (setf *compile-print* nil)

But be warned that that will turn off a *lot* of useful information...


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607