Re: [Chicken-users] all bound symbols?

2007-08-03 Thread Zbigniew
All this time and I didn't know about apropos. Thanks! On 8/3/07, felix winkelmann <[EMAIL PROTECTED]> wrote: > Try "apropos" fom the "utils" unit. ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicke

Re: [Chicken-users] all bound symbols?

2007-08-03 Thread felix winkelmann
tcp timeouts are only available in newer chicken's (2.633 I think). cheers, felix On 8/3/07, Shawn Rutledge <[EMAIL PROTECTED]> wrote: > On 8/3/07, felix winkelmann <[EMAIL PROTECTED]> wrote: > > On 8/3/07, Shawn Rutledge <[EMAIL PROTECTED]> wrote: > > > Is there a way to list all bound symbols,

Re: [Chicken-users] all bound symbols?

2007-08-03 Thread Shawn Rutledge
On 8/3/07, felix winkelmann <[EMAIL PROTECTED]> wrote: > On 8/3/07, Shawn Rutledge <[EMAIL PROTECTED]> wrote: > > Is there a way to list all bound symbols, or even the entire symbol > > table, from csi? > > > > E.g. > > > > #;7> (use tcp) > > #;8> tcp-read-timeout > > Error: unbound variable: tcp-r

Re: [Chicken-users] all bound symbols?

2007-08-03 Thread felix winkelmann
On 8/3/07, Shawn Rutledge <[EMAIL PROTECTED]> wrote: > Is there a way to list all bound symbols, or even the entire symbol > table, from csi? > > E.g. > > #;7> (use tcp) > #;8> tcp-read-timeout > Error: unbound variable: tcp-read-timeout You seem to have an older chicken, or a new chicken that sti

[Chicken-users] all bound symbols?

2007-08-03 Thread Shawn Rutledge
Is there a way to list all bound symbols, or even the entire symbol table, from csi? E.g. #;7> (use tcp) #;8> tcp-read-timeout Error: unbound variable: tcp-read-timeout but the documentation says that's what it is... so I would like to dump all known symbols and grep for something similar. ___