On 2012-08-13, Christopher Sangwin <c.j.sangwin at bham.ac.uk> wrote:
> using Lisp CLISP 2.49 (2010-07-07)
> (%i1) matrix_size(matrix([1,2,3],[4,5,6]));
> 0 errors, 0 warnings
That's from Clisp's implementation of WITH-COMPILATION-UNIT.
(matrix_size is loaded at run time instead of being compiled with the
rest of Maxima, as it is in the linearalgebra share package.)
I don't know how to suppress the message. I guess you could ask on the
Clisp mailing list. Directions probably on: http://clisp.cons.org
An alternative is to put load(linearalgebra) in the maxima-init.mac so
that the message appears only at start-up. Still another is to load
linearalgebra into Maxima, then dump a Lisp image and run that. Then the
message won't appear at run time.
best,
Robert Dodier