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

[no subject]



Isn't it possible (my stupidity showing), that at EVAL time the object
which represents the FUNCTION-NAME should get uppercased but that all objects
on which the function works retain caseness? That way
(setq foo '(car a)) => (car a)
foo => (car a)
(setq a (cons 'b 'c)) => (b . c)
(eval foo) is the same as (CAR a) => b  NOT B?
Even if I did get something wrong in my example, the intention should be clear.
The uppercasing happens at EVAL time not at READ time. Okay, what's my
punishment for my stupidity?