On Sat, 7 Sep 2002, Steve Fink wrote: > Apply as much or as little of this patch as you want.
Looks good to me. > - Add a few more patterns to various .cvsignore files > - Add a -e (or --eval) flag to perl6. For those "quick" one-liners? > - Reindent a bunch of code that had too few spaces > - Make sure P6C::IMCC::code() adds a newline after every line > (I was getting two consecutive lines of code smashed together) This will probably make the output pretty ugly. I'd rather find the culprit for the smashed-together lines, or only add a newline if there isn't one already. > - redirect stdout differently > > The last is somewhat puzzling. perl6 was passing "> outfile" as an > array argument to system(), which on Unix at least won't work. I curse my carelessness. Before, it was sending it all as a big string, meaning the shell sometimes did nasty things to the arguments passed to your program. When changing that, I did not notice that it would break this. /s