From f5f9c7222ab266f36ee1273b386a35a880f8f299 Mon Sep 17 00:00:00 2001 From: "Itai Y. Efrat" Date: Fri, 24 Feb 2023 18:54:50 +0200 Subject: [PATCH] fix(lib): letf! in doom--help-search Slipped by manual testing due to consult not being loaded at the time and doom--help-search going to default grep-find usage instead of hitting the failiure. Amend: 54c4340740ec --- lisp/lib/help.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/lib/help.el b/lisp/lib/help.el index 1ab9dc7ab..a5dc7018b 100644 --- a/lisp/lib/help.el +++ b/lisp/lib/help.el @@ -700,7 +700,7 @@ config blocks in your private config." prompt (lambda (input) ;; PERF: avoid converting dirs to string and back when adding them to ripgrep args. - (letf! (defun consult--command-split (fn &rest args) + (letf! (defun consult--command-split (&rest args) (append (apply consult--command-split args) dirs)) (funcall (consult--ripgrep-make-builder) input))) data-directory query))