branch: externals/embark
commit 4addf7150009ce0ab3d1c9af351f5a8bbc332646
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>

    Drop consult-multi
---
 embark.el | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/embark.el b/embark.el
index 1bd5305176..f533923b91 100644
--- a/embark.el
+++ b/embark.el
@@ -180,9 +180,7 @@ bounds pair of the target at point for highlighting."
     (embark-keybinding . embark--keybinding-command)
     (project-file . embark--project-file-full-path)
     (package . embark--remove-package-version)
-    (multi-category . embark--refine-multi-category)
-    ;; TODO: `consult-multi' has been obsoleted by `multi-category'. Remove!
-    (consult-multi . embark--refine-multi-category))
+    (multi-category . embark--refine-multi-category))
   "Alist associating type to functions for transforming targets.
 Each function should take a type and a target string and return a
 pair of the form a `cons' of the new type and the new target."
@@ -1837,8 +1835,6 @@ minibuffer before executing the action."
 (defun embark--refine-multi-category (_type target)
   "Refine `multi-category' TARGET to its actual type."
   (or (get-text-property 0 'multi-category target)
-      ;; TODO: `consult-multi' has been obsoleted by `multi-category'. Remove!
-      (get-text-property 0 'consult-multi target)
       (cons 'general target)))
 
 (defun embark--refine-symbol-type (_type target)

Reply via email to