From: Ken A. <kan...@bb...> - 2004-07-26 19:11:45
|
'{[3]} (!{} "" 3 "") I'm wondering if we could add a couple of check to not add empty strings. |
From: Alan D. <ado...@cs...> - 2004-07-26 19:28:27
|
Hello Schemers, I have a patch, if anyone is interested, that lets you use the GNU 'readline' library for interactive expression editing in the REPL; it also supports S-expression history. Let me know if you're interested. alan |
From: Ken A. <kan...@bb...> - 2004-07-26 21:01:25
|
This is a C library right, what does it let you do. k At 03:28 PM 7/26/2004 -0400, Alan Donovan wrote: >Hello Schemers, > >I have a patch, if anyone is interested, that lets you use the GNU >'readline' library for interactive expression editing in the REPL; it >also supports S-expression history. > >Let me know if you're interested. > >alan > > > >------------------------------------------------------- >This SF.Net email is sponsored by BEA Weblogic Workshop >FREE Java Enterprise J2EE developer tools! >Get your free copy of BEA WebLogic Workshop 8.1 today. >http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click >_______________________________________________ >Jscheme-user mailing list >Jsc...@li... >https://lists.sourceforge.net/lists/listinfo/jscheme-user |
From: Michael R H. <bu...@su...> - 2004-07-26 22:04:18
|
Meant to send this to the list... On Mon, 2004-07-26 at 17:00 -0400, Ken Anderson wrote: > This is a C library right, what does it let you do. It gives you all the nice features like history with up arrow/down arrow access, tab completion (I think), basically everything you get with a mysql console, or python interactive mode, or bash. I understand that Jython uses Java-Readline http://java-readline.sourceforge.net/, which just JNI-wrappers the C library. It's definitely very nice and would make the jscheme interpreter act more like most commandline driven Linux tools. Unfortunately, GNU readline is GPL licensed (as you might imagine). My understanding is that there is a BSD licensed replacement (http://sourceforge.net/projects/libedit/), but I don't know how active or useful it is, and I don't know how well it works with Java-readline (which itself is LGPL).=20 mike >=20 > k > At 03:28 PM 7/26/2004 -0400, Alan Donovan wrote: >=20 > >Hello Schemers, > > > >I have a patch, if anyone is interested, that lets you use the GNU > >'readline' library for interactive expression editing in the REPL; it > >also supports S-expression history. > > > >Let me know if you're interested. > > > >alan > > > > > > > >------------------------------------------------------- > >This SF.Net email is sponsored by BEA Weblogic Workshop > >FREE Java Enterprise J2EE developer tools! > >Get your free copy of BEA WebLogic Workshop 8.1 today. > >http://ads.osdn.com/?ad_id=3D4721&alloc_id=3D10040&op=3Dclick > >_______________________________________________ > >Jscheme-user mailing list > >Jsc...@li... > >https://lists.sourceforge.net/lists/listinfo/jscheme-user >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=3D4721&alloc_id=3D10040&op=3Dclick > _______________________________________________ > Jscheme-user mailing list > Jsc...@li... > https://lists.sourceforge.net/lists/listinfo/jscheme-user --=20 Michael R Head <bu...@su...> GPG: http://www.suppressingfire.org/~burner/gpg.key.txt (ID 23A02B1F) |
From: Ken A. <kan...@bb...> - 2004-07-26 22:33:05
|
Rusty was just cautioning me about adding any GPL software to JScheme. Alan, can you use java-readline? Also Tim is working on a scheme where we can contribute examples of using JScheme which include components under various licences. I know there's been discussion about readline on the Guile mailing list. Greg, can you comment on it? BTW, i run JScheme in Emacs to be safe, so i don't need to add these features through another mechanism. Am i just old, or what? k At 06:02 PM 7/26/2004 -0400, Michael R Head wrote: >Meant to send this to the list... > >On Mon, 2004-07-26 at 17:00 -0400, Ken Anderson wrote: >> This is a C library right, what does it let you do. > >It gives you all the nice features like history with up arrow/down arrow >access, tab completion (I think), basically everything you get with a >mysql console, or python interactive mode, or bash. I understand that >Jython uses Java-Readline http://java-readline.sourceforge.net/, which >just JNI-wrappers the C library. > >It's definitely very nice and would make the jscheme interpreter act >more like most commandline driven Linux tools. > >Unfortunately, GNU readline is GPL licensed (as you might imagine). My >understanding is that there is a BSD licensed replacement >(http://sourceforge.net/projects/libedit/), but I don't know how active >or useful it is, and I don't know how well it works with Java-readline >(which itself is LGPL). > >mike > >> >> k >> At 03:28 PM 7/26/2004 -0400, Alan Donovan wrote: >> >> >Hello Schemers, >> > >> >I have a patch, if anyone is interested, that lets you use the GNU >> >'readline' library for interactive expression editing in the REPL; it >> >also supports S-expression history. >> > >> >Let me know if you're interested. >> > >> >alan >> > >> > >> > >> >------------------------------------------------------- >> >This SF.Net email is sponsored by BEA Weblogic Workshop >> >FREE Java Enterprise J2EE developer tools! >> >Get your free copy of BEA WebLogic Workshop 8.1 today. >> >http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click >> >_______________________________________________ >> >Jscheme-user mailing list >> >Jsc...@li... >> >https://lists.sourceforge.net/lists/listinfo/jscheme-user >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by BEA Weblogic Workshop >> FREE Java Enterprise J2EE developer tools! >> Get your free copy of BEA WebLogic Workshop 8.1 today. >> http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click >> _______________________________________________ >> Jscheme-user mailing list >> Jsc...@li... >> https://lists.sourceforge.net/lists/listinfo/jscheme-user >-- >Michael R Head <bu...@su...> >GPG: http://www.suppressingfire.org/~burner/gpg.key.txt (ID 23A02B1F) |