newLISP Fan Club

Forum => newLISP in the real world => Topic started by: newdep on November 01, 2006, 03:22:05 AM

Title: select "segmentation fault"
Post by: newdep on November 01, 2006, 03:22:05 AM
Hi Lutz,



Should this happen?

Perhpas its just a little too nested?





newLISP v.9.0 on Linux, execute 'newlisp -h' for more info.



> (select D (index true? (map directory? (setq D (directory)))))

Segmentation fault





Norman.
Title:
Post by: newdep on November 01, 2006, 03:25:29 AM
just an addon...



The above was on my path by creating the smalest directory selection from a bunch of files.. So if the above doesn't work then i guess this is

the smallest a "directory filter" can get in newlisp ->



(and (setq X (index true? (map directory? (setq D (directory))))) (select D X))



Norman.
Title:
Post by: Lutz on November 01, 2006, 04:59:55 AM
The first definition crashes because D is modified by 'setq' while beeing used by 'select'.



Also using 'select' with an index list constructed using 'index' is the same as using 'filter', so why not just doing?


(filter directory? (directory))

or if you want all files not a directory:


(clean directory? (directory))

Lutz
Title:
Post by: newdep on November 02, 2006, 01:00:53 PM
yes right I was a little overclocking the function ;-)



But 'clean? actualy how long does that one exist already? I never

seen it befor ;-) Great way to wake up again ;-)



Norman.
Title:
Post by: lisp on November 05, 2006, 06:47:50 PM
It was put in @ v.8.8.7 according to the 8.9 release notes (//http).
Title:
Post by: newdep on November 14, 2006, 02:41:03 PM
Aaa im always running behind the mind expantion of Lutz...