rc4



"Stavros Macrakis" <stavros.macrakis@verizon.net> writes:

> -- Still have case problems.  Input: [a,A,b,B,c,C] comes back as [a, A,
> b, B, C, C].

Not so for Clisp and SBCL.

(C1) [a,A,b,B,c,C];
(D1) 			      [a, A, b, B, c, C]

This seems to imply that under GCL either

MAXIMA[2]> (fboundp '$c)
NIL

or

MAXIMA[3]> (symbol-plist '$c)
NIL

should give a different result (see BOTHCASE-IMPLODE in commac.lisp).
By the way, Vadim V. Zhytnikov also noticed this peculiarity of GCL
(see the message of Aug 21 2002, where he gives some additional
examples).

Wolfgang