From cc159ed9a92b89d0b303c620a2e87ec02724c4d1 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 1 Jun 2018 13:06:30 +0200 Subject: [PATCH] completion/helm: add-hook! => add-hook add-hook! is unnecessary for adding 1-to-1 hook. --- modules/completion/helm/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/completion/helm/config.el b/modules/completion/helm/config.el index cda2c9bf4..b345b0530 100644 --- a/modules/completion/helm/config.el +++ b/modules/completion/helm/config.el @@ -158,7 +158,7 @@ (defun +helm|posframe-cleanup () (posframe-hide +helm--posframe-buffer)) - (add-hook! 'helm-cleanup-hook #'+helm|posframe-cleanup) + (add-hook 'helm-cleanup-hook #'+helm|posframe-cleanup) (setq helm-display-function #'+helm-posframe-display))