[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]



Since STRING-EQUAL ignore case, (EQUAL "foo" "FOO") is T, so case of strings is ignored
when the compiler does MEMBER on the QUOTE-LIST.  Thus (defun foo () (list "foo" "FOO"))
will make something that generates ("foo" "foo").  Perhaps STRING-EQUAL should look at
some special variable to know whether or not to ignore case, and then QADD and friends
can bind this?