From 5021b0dbb6203516ffe167988cf34a02a8e8a173 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 28 Aug 2018 19:35:56 +0200 Subject: [PATCH] completion/helm: fix undefined helm/grep* --- modules/completion/helm/autoload/helm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/completion/helm/autoload/helm.el b/modules/completion/helm/autoload/helm.el index ff07cd41d..af39ece1a 100644 --- a/modules/completion/helm/autoload/helm.el +++ b/modules/completion/helm/autoload/helm.el @@ -210,7 +210,7 @@ ones." ;;;###autoload (autoload '+helm/grep "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/grep-from-cwd "completion/helm/autoload/helm") -(dolist (engine (cl-remove-duplicates +helm-project-search-engines :from-end t)) +(dolist (engine `(,@(cl-remove-duplicates +helm-project-search-engines :from-end t) grep)) (defalias (intern (format "+helm/%s" engine)) (lambda (all-files-p &optional query directory) (interactive "P")