branch: externals/embark
commit 560baa9e96c8503973b390fdb206f477bbae349e
Author: Omar Antolín <omar.anto...@gmail.com>
Commit: Omar Antolín <omar.anto...@gmail.com>

    Don't let users use org-self-insert-command as action
    
    We already do that for self-insert-command. Fixes #668
---
 embark.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/embark.el b/embark.el
index 4948b304f0..ee8534b871 100644
--- a/embark.el
+++ b/embark.el
@@ -1261,7 +1261,7 @@ UPDATE is the indicator update function."
                                                     ; bound, then obey
                 (and def (not (numberp def))))) ; number means "invalid prefix"
        cmd)
-      ('self-insert-command
+      ((or 'self-insert-command 'org-self-insert-command)
        (minibuffer-message "Not an action")
        (embark-keymap-prompter keymap update))
       ((or 'scroll-other-window 'scroll-other-window-down)

Reply via email to