Skip to content
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

org-msg-edit-mode-mu4e: Symbol’s function definition is void: mu4e~compose-remap-faces #193

Open
OrionRandD opened this issue Jun 28, 2024 · 0 comments

Comments

@OrionRandD
Copy link

;;;;;;;;;;;;;;;;;;;;;

I have had this issue for some time now...
I managed to fix it with this tiny fix bellow,
But, I still have to evaluate the org-msg.el file by hand.
See bellow:

;;;;;;;;;;;;;;;;;;;;;

Error:

org-msg-edit-mode-mu4e: Symbol’s function definition is void: mu4e~compose-remap-faces

;;;;;;;;;;;;;;;;;;;;;

;;; org-msg.el --- Org mode to send and reply to email in HTML. -- lexical-binding: t; --

;; Package-Version: 4.0
;; Package-Requires: ((emacs "24.4") (htmlize "1.54"))

;; modified functions
;; ~ into --

defun org-msg-edit-mode-mu4e ()
"Setup mu4e faces, addresses completion and run mu4e."

;; (mu4e~compose-remap-faces)
(mu4e--compose-remap-faces) ;; change here

(unless (mu4e-running-p)
(if (fboundp #'mu4estart) (mu4estart) (mu4e--start)))
(when mu4e-compose-complete-addresses

;; (mu4e~compose-setup-completion))
(mu4e--compose-setup-completion)) ;; change here

;; the following code is verbatim from mu4e-compose.el, `mu4e-compose-mode'

;;;;;;;;;;;;;;;;;;;;;

But, I have to open org-msg.el and evaluate it by-hand, since it does not load on Emacs startup.

;; When I do that, C-F10 and shift-C
;; works as expected

;;;;;;;;;;;;;;;;;;;;;

Could you test it there and, if possible, make these small changes to fix org-msg.el if this is a bug or something?
Or it is just me using this version...
Thx

;;;;;;;;;;;;;;;;;;;;;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant