On 10/23/06, Philip Ganchev <[EMAIL PROTECTED]> wrote: > Since a few versions ago, I have been getting an error message when I > start Fish: > > fish: Could not autoload item "functions", it is already being > autoloaded. This is a circular dependency in the autoloading scripts, > please remove it. > > Apparently it's because my file > "~/.config/fish/functions/functions.fish" invokes ``functions foo -d > "Bar"''. >
This is not a bug. Fish interprets this as an attempt to invoke the 'functions' function while defining it. If you want to use the builtin with the same name, you can write 'builtin functions foo -d' -- Axel ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Fish-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fish-users
