Robert Dodier wrote:
>
> With latest sym files + Clisp or CMUCL Maxima, I find permut
> yields a Lisp error: "(LAMBDA (PERMU) (CONS '(MLIST) PERMU))
> is not a function." I don't know what this is about.
If (LAMBDA (PERMU) ....
occurs in the source code, it should more properly be written as
#'(lambda(permu)(cons '(mlist) permu))
note the #' at the beginning. Some lisps allow the #' to be
omitted. Some do not.
RJF
>