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

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

[elpa] externals/embark be28f5584b 4/6: Mark embark-collect-mode as non-


From: ELPA Syncer
Subject: [elpa] externals/embark be28f5584b 4/6: Mark embark-collect-mode as non-interactive
Date: Sun, 3 Jul 2022 20:57:36 -0400 (EDT)

branch: externals/embark
commit be28f5584bad775e6340203d0491e87455e4915a
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Mark embark-collect-mode as non-interactive
    
    Also disable syntax-table and abbrev-table
---
 embark.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/embark.el b/embark.el
index 5daae8d544..19f431b608 100644
--- a/embark.el
+++ b/embark.el
@@ -2660,7 +2660,7 @@ This takes into account `embark-transformer-alist'."
   "Turn an ACTION into a command to perform the action.
 Returns the name of the command."
   (let ((name (intern (format "embark-action--%s"
-                              (embark--command-name action))))) 
+                              (embark--command-name action)))))
     (fset name (lambda (arg)
                  (interactive "P")
                  (when-let (target (embark-collect--target))
@@ -2791,7 +2791,8 @@ just restarts the completion session, that is, the 
command that
 opened the minibuffer is run again and the minibuffer contents
 restored.  You can then interact normally with the command,
 perhaps editing the minibuffer contents, and, if you wish, you
-can rerun `embark-collect' to get an updated buffer.")
+can rerun `embark-collect' to get an updated buffer."
+    :interactive nil :abbrev-table nil :syntax-table nil)
 
 (defun embark-collect--remove-zebra-stripes ()
   "Remove highlighting of alternate rows."



reply via email to

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