branch: externals/mct
commit 3193a95c308e3de0dbfa77bcd07fb0838b79de22
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Simplify &rest in private function
---
mct-tcm.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mct-tcm.el b/mct-tcm.el
index 1b60556b2b..3b6c213f53 100644
--- a/mct-tcm.el
+++ b/mct-tcm.el
@@ -52,7 +52,7 @@ minibuffer while narrowing to the given input."
(add-hook 'completion-list-mode-hook
#'mct-tcm--setup-redirect-self-insert)
(remove-hook 'completion-list-mode-hook
#'mct-tcm--setup-redirect-self-insert)))
-(defun mct-tcm--redirect-self-insert (&rest _args)
+(defun mct-tcm--redirect-self-insert (&rest _)
"Redirect single character keys as input to the minibuffer."
(when-let* ((mct-tcm-mode)
(keys (this-single-command-keys))