[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- From: JL at MIT-MC
- Date: Mon ,2 Jun 81 00:53:17 EDT
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?