I made the current version into an egg: http://jiyu.gnook.org/~zbigniew/args/args.egg
You may load the code (args.scm and args-support.scm, also available at that URL) into the interpreter without compiling or installing the extension. However, you must explicitly load args-support.scm (the args.scm macros will not drag it in; the extension .setup file handles this). I tried several ways to make this transparent, such as making args-support contain the macros, but failed in various ways. But, if you install the extension once, you will have a .setup file, which will work even on source code in your current directory. So you can tweak the code locally and still drag it all in with (require-extension args). That's the best I can do so far. On 6/7/05, Zbigniew <[EMAIL PROTECTED]> wrote: > Based on the discussion Michele and I had, I updated my code to > generate usage text directly from the options you provide. It is not > really a "parser" per se, but it is sweet with macro sugar. > make-option's arguments are basically in the order they occur in usage > text. _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
