completion/helm: fix undefined helm/grep*

This commit is contained in:
Henrik Lissner 2018-08-28 19:35:56 +02:00
parent 9ee1d8d0e2
commit 5021b0dbb6
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -210,7 +210,7 @@ ones."
;;;###autoload (autoload '+helm/grep "completion/helm/autoload/helm") ;;;###autoload (autoload '+helm/grep "completion/helm/autoload/helm")
;;;###autoload (autoload '+helm/grep-from-cwd "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)) (defalias (intern (format "+helm/%s" engine))
(lambda (all-files-p &optional query directory) (lambda (all-files-p &optional query directory)
(interactive "P") (interactive "P")