Re: script for generating tags for picolisp

2010-08-18 Thread Alexander Burger
Hi Doug, On Tue, Aug 17, 2010 at 09:19:23PM -0700, Doug Snead wrote: > ... > # make a tags file for pico lisp source files. > ... As I understand it, this is not exactly what Edwin intended. I think he wanted a tags file for the main interpreter functions written in C. Also, the tags for Lisp fu

Re: script for generating tags for picolisp

2010-08-18 Thread Edwin Eyan Moragas
Hi Alex, On Wed, Aug 18, 2010 at 3:41 PM, Alexander Burger wro= te: > Hi Doug, > > On Tue, Aug 17, 2010 at 09:19:23PM -0700, Doug Snead wrote: >> ... >> # make a tags file for pico lisp source files. >> ... > > As I understand it, this is not exactly what Edwin intended. I think he > wanted a tag

Re: script for generating tags for picolisp

2010-08-18 Thread Edwin Eyan Moragas
Hi Doug, thanks for this. this would come in handy. On Wed, Aug 18, 2010 at 12:19 PM, Doug Snead wro= te: > Here's one shell script I used to use for that (I called it lisptags) ...= hopefully it still works :-) > > #!/bin/sh > # make a tags file for pico lisp source files. > # use: > # =A0 =A0

(extend cls)

2010-08-18 Thread Edwin Eyan Moragas
Hi all, i'm going thru the wiki code. encountered `(extend)` in it but couldn't find an example in the tutorial but found the definition in the docs. after reading thru, seems to me that *Class is used to change class definitions (from wiki/er.l and doc/family.l). examining wiki/gui.l, seems to m

Re: (extend cls)

2010-08-18 Thread Alexander Burger
Hi Edwin, > after reading thru, seems to me that *Class is used to change class > definitions (from wiki/er.l and doc/family.l). examining wiki/gui.l, > seems to me that class definitions (say +Doc) are kept in top-level. Exactly. '*Class' is simply a global variable holding the "current class".