-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mu4e-org: autoload org-link-set-parameters #2798
Conversation
Ping :) |
With this change, mu4e: links now load mu4e if it wasn't loaded already.
d8084e6
to
71101c3
Compare
rebased on master |
Merged, thanks. |
This causes a call to (org-link-set-parameters) when loaddefs.el is loaded, which is not what we want.. this is causing an init failure for me. |
@wavexx disabled the change for now. What exact error did you get? |
Attempting to call underfined (org-link-set-parameters) while loading loaddefs.el. Which makes sense, since this cookie is just putting the call into loaddefs, but the definition is not available yet. mu4e-org.el should require 'ol to make org-link-set-parameters defined instead. |
I am sorry to inconvenience you, @wavexx! Thank you for reporting the issue, and thank you for reverting my mistake so quickly @djcb!! I am able to reproduce the issue by checking out 62e4b07 (just before this PR was reverted), then generating Adding I think the solution is for Thank you! Joseph |
@josephmturner we can add the autoload then when the fix is available in the minimum emacs version supported by mu4e... which is currently 26.x (at least officially). Or perhaps there's some different way, but it seems like a fairly minor thing (at least for me). |
Sounds good to me. Shall I make a new issue as a reminder for then? |
With this change, mu4e: links now load mu4e if it wasn't loaded already.