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

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.o

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 "#*#" | xar

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 effi

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

2007-08-27 Thread Jonathan Rockway
Kieren Diment wrote: > Applied (changeset 6741 and 6742 - don't ask) , thanks :-) > > On 27/08/07, Dave Rolsky <[EMAIL PROTECTED]> wrote: > >> When you're editing a buffer in emacs, it will create a temporary symlink >> in the same directory of the file in the form ".#". Thanks kd++ and autarch+