Re: [Catalyst] Re: [Catalyst-dev] Ignoring Emacs temp files

2007-08-30 Thread Jonathan Rockway
Matt Rosin wrote: Ouch. I use xemacs -nw and FindBin but haven't seen this explosion, I think. What autodiscovery are you using that makes it require Foo:::#Bar ? Basically find | egrep 'pm$'. I thought it would be safer to filter on a regex like ^\w+[.]pm$ since the docs say that modules can

Re: [Catalyst] Re: [Catalyst-dev] Ignoring Emacs temp files

2007-08-29 Thread Matt Rosin
Ouch. I use xemacs -nw and FindBin but haven't seen this explosion, I think. What autodiscovery are you using that makes it require Foo:::#Bar ? blows up when it tries to do something like: eval require Foo::.#Bar ___ List: Catalyst@lists.rawmode.org

Re: [Catalyst] Re: [Catalyst-dev] Ignoring Emacs temp files

2007-08-28 Thread Alejandro Imass
if you are methodic enough you can just create a script in /usr/bin that cleans temps, backs and other rotten files. Or easier yet, you can alias to something like clean_emacs to something like: find . -name *~ | xargs rm -f find . -name #*# | xargs rm -f of course you can make this more

Re: [Catalyst] Re: [Catalyst-dev] Ignoring Emacs temp files

2007-08-28 Thread Dave Rolsky
On Tue, 28 Aug 2007, Alejandro Imass wrote: if you are methodic enough you can just create a script in /usr/bin that cleans temps, backs and other rotten files. Or easier yet, you can alias to something like clean_emacs to something like: find . -name *~ | xargs rm -f find . -name #*# | xargs