Closed cpitclaudel closed 6 years ago
The CI failure looks like a fluke; the log says this:
emacs --version
make: *** [setup-CI] Illegal instruction (core dumped)
The CI failure looks like a fluke; the log says this:
emacs --version make: *** [setup-CI] Illegal instruction (core dumped)
Yeah, it's been doing that :-( I'm not sure what's causing it, but I'm not the only one; I remember seeing a recent issue about this in other repositories.
For now, I've just been restarting the builds; it seems to be random. Looks like the build is succeeding now, though :-)
Merged, thanks!!
Thanks for this package! It looks great. I'm trying to run it, but it breaks my Emacs startup.
The reason is that I collect my magit setttings in a file called
magit.el
. That file isn't in my load path, so it doesn't create a conflict and it doesn't cause issues when requiring magit.It does, however, conflict with the autoloads in magithub, including this one:
This part of the docs is relevant:
IOW,
(eval-after-load "magit")
runs its body any time a file calledmagit.el
is loaded, whereas(eval-after-load 'magit)
runs its body only after(provide 'magit)
. I think we want the latter, right?