Re: CHRPS is unbound

Jaime Villate <[email protected]> Tue, 12 May 2026 08:19:14 +0100
Newsgroups gmane.comp.mathematics.maxima.general
Message-ID <[email protected]>
On 5/11/26 23:47, Robert Dodier wrote:
> Looking at the commit log, it appears there was some cleanup of the
> special variable CHRPS in src/grind.lisp. I think maybe Ray T. missed
> one is all.

Line 84 of grind.lisp reads:

(defun styo (x) (setq *grind-charlist* (cons x *grind-charlist*) *chrps* 
(1+ chrps)))

I think it should be:

(defun styo (x) (setq *grind-charlist* (cons x *grind-charlist*) *chrps* 
(1+ *chrps*)))

Because variable chrps doesn't exist anymore.

Regards,

Jaime