From f75a2fc9e3d5beb7d3c3ba97424db709b32f6573 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Fri, 1 Apr 2022 18:54:42 -0500 Subject: [PATCH] Fix arity of `consult--orderless-regex-compiler` I might want to combine this and the one for affe. --- lisp/+consult.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/+consult.el b/lisp/+consult.el index 0f5bf45..dc06ad5 100644 --- a/lisp/+consult.el +++ b/lisp/+consult.el @@ -12,7 +12,7 @@ ;;; Cribbed functions ;; https://github.com/minad/consult/wiki -(defun consult--orderless-regexp-compiler (input type) +(defun consult--orderless-regexp-compiler (input type &rest _) (setq input (orderless-pattern-compiler input)) (cons (mapcar (lambda (r) (consult--convert-regexp r type)) input)