Re: Help



C Y <smustudent1@yahoo.com> writes:

>> I don't have maxima sources to hand: if there's a literal (base-char)
>> in the code, try changing it to simply base-char; if there doesn't
>> seem to be one, we might have to dig deeper.
>
> I don't see one.  Here's the function in question:
>
> (defun grab-line-number (li stream)
>   (declare (type (vector ( #. (array-element-type "ab"))) li))
                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

There would be your problem.  Remove one level of parentheses, so that
it reads:
  (declare (type (vector #.(array-element-type "ab")) li))

Cheers,

Christophe
-- 
http://www-jcsu.jesus.cam.ac.uk/~csr21/       +44 1223 510 299/+44 7729 383 757
(set-pprint-dispatch 'number (lambda (s o) (declare (special b)) (format s b)))
(defvar b "~&Just another Lisp hacker~%")    (pprint #36rJesusCollegeCambridge)