Fix arity of `consult--orderless-regex-compiler`

I might want to combine this and the one for affe.
This commit is contained in:
Case Duckworth 2022-04-01 18:54:42 -05:00
parent 31f595fafa
commit f75a2fc9e3
1 changed files with 1 additions and 1 deletions

View File

@ -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)