Subject: assigning operators - case sensitivity problem?
From: Raymond Toy
Date: Tue, 29 Mar 2005 16:26:55 -0500
>>>>> "Andreas" == Andreas J Guelzow writes:
Andreas> On Tue, 2005-29-03 at 14:34 -0500, Raymond Toy wrote:
>> Oops. I must have had some leftovers because when I did a recompile
>> instead of playing with the repl, I get:
>>
>> (%i1) postfix("F");
>> (%o1) "F"
>> (%i2) postfix("f");
>> (%o2) "f"
>> (%i3) (x)f:=x*a;
>> (%o3) x f := x a
>> (%i4) 40f;
>> (%o4) 40 a
>> (%i5) 40F;
>> (%o5) 40 F
>>
>> This seems more reasonable. I can't comment on Andreas Guelzow's
>> issue with %o3, but at least %o5 seems to be right.
Andreas> Even %o3 is right now.
Oh, right. I wasn't looking at the case of f in %o3. So this looks
like it should work.
Whew!
Ray