On Tue, Feb 2, 2016 at 9:12 AM, Carmine Casciato <[email protected]> wrote: > In toplevel form: > magit-git.el:558:12:Warning: ‘(cyg . _win)’ is a malformed function
That refers to (-lambda ((cyg . _win)) (length cyg)), my first guess would be that your dash version is out of date, though usually the symptom for that is "Symbol’s value as function is void –some" (see [1]) and -lambda was added more than 2 years ago [2], in version 2.9.0. Perhaps the byte compiler in the latest Emacs version is more aggressive, so you hit the problem at compile time instead of runtime (the particular code in question happens to only run on Windows, so you would otherwise never see a problem on Ubuntu). By the way, I suggest you use the emacs-25 branch (aka 25.0.90) instead of master (aka 25.1.50), as most of the focus is currently on the emacs-25 branch to get it ready for release. [1]: http://magit.vc/manual/magit/Symbol_0027s-value-as-function-is-void-_002d_002dsome.html [2]: https://github.com/magnars/dash.el/commit/f0831d3ab9f5c6dcca6d52f8688d94d52af983fd -- You received this message because you are subscribed to the Google Groups "magit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
