branch: elpa/evil-goggles
commit aad4b44727844935d18ae4df040232e8b3d88200
Author: Evgeni Kolev <[email protected]>
Commit: Evgeni Kolev <[email protected]>
evil-goggles--show-hint: fix value of evil-goggles--force-block
---
evil-goggles.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/evil-goggles.el b/evil-goggles.el
index 4ecc57ddae..a940df71b7 100644
--- a/evil-goggles.el
+++ b/evil-goggles.el
@@ -292,7 +292,7 @@ If BLOCKING is non-nil, the hint will be treated like a
blocking
hint, i.e. it will be displayed for `evil-goggles-blocking-duration'
rather than `evil-goggles-async-duration'"
(if (or blocking force-vertical-hint)
- (let ((evil-goggles--force-block blocking))
+ (let ((evil-goggles--force-block force-vertical-hint))
;; use blocking hint for vertial blocks, async hint doesn't support
vertial blocks
(evil-goggles--with-blocking-hint beg end face))
(evil-goggles--with-async-hint beg end face)))