Re: How to modify class variables?

2009-12-09 Thread Henrik Sarvell
Don't forget, in some cases it's simply enough with ::, for instance (pop (:: classVar)). Just to make the discussion complete :-) /Henrik On Wed, Dec 9, 2009 at 7:53 AM, Alexander Burger a...@software-lab.de wrot= e: Hello Cle, Now I have detected the class variables I want to use now. But

suggestion to change in Makefile

2009-12-09 Thread Mansur Mamkin
Hi all, what do you think about to do small modification in the Makefile I propose this because of link error on my Linux box (AltLinux Desktop). As I undestood, this is because of using --as-needed linker flag as default on that Linux. So AltLinux team suggests to put -llib arguments after

Re: suggestion to change in Makefile

2009-12-09 Thread Alexander Burger
Hi Jon, hi Mansur, When I do ... $(/bin/pwd)/p lib/test.l -bye .. then I get OK. Yep, the explicit path is essential, because otherwise the path-checking routines have no path to check for ;-) So, now I edited Mansur's suggestion into src/Makefile. I hope I got it right. Anybody who likes

Re: suggestion to change in Makefile

2009-12-09 Thread Jon Kleiser
Hi Alex, Your new testing release works fine on my Intel Mac. The test gives OK. /Jon Hi Jon, hi Mansur, When I do ... $(/bin/pwd)/p lib/test.l -bye .. then I get OK. Yep, the explicit path is essential, because otherwise the path-checking routines have no path to check for ;-) So,

Re: suggestion to change in Makefile

2009-12-09 Thread Alexander Burger
Hi Jon, Your new testing release works fine on my Intel Mac. The test gives OK. Good. I successfully tested on a 32-bit machine, and a 32-bit build on a 64-bit machine. Looks also all right. So let's keep it until somebody complains ;-) Cheers, - Alex -- UNSUBSCRIBE:

Re: How to modify class variables?

2009-12-09 Thread cle
First let me thank you and Henrik for the insight you gave me. Alexander Burger wrote: And one more thing I just remember: On Wed, Dec 09, 2009 at 01:10:21PM +0100, Alexander Burger wrote: There is no separate 'set'ter function needed, as the 'any' argument in (var sym . any) A 'set'ter

Re: How to modify class variables?

2009-12-09 Thread Alexander Burger
Hi Cle, On Thu, Dec 10, 2009 at 08:32:38AM +0100, Alexander Burger wrote: oops, didn't look carefully enough. The 'foos' method must, as in your *1c* case, specify the current '*Class' directly: (dm foos () (mapcar cdr (val (get '`*Class 'Foos))) ) Now I begin to grasp your