emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/embark 560baa9e96: Don't let users use org-self-insert-


From: ELPA Syncer
Subject: [elpa] externals/embark 560baa9e96: Don't let users use org-self-insert-command as action
Date: Tue, 3 Oct 2023 18:58:02 -0400 (EDT)

branch: externals/embark
commit 560baa9e96c8503973b390fdb206f477bbae349e
Author: Omar Antolín <omar.antolin@gmail.com>
Commit: Omar Antolín <omar.antolin@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

[Prev in Thread] Current Thread [Next in Thread]