branch: elpa/evil-goggles
commit 787b8dcabd12d47844f47876830c4dd1a8b7cebd
Author: Evgeni Kolev <[email protected]>
Commit: Evgeni Kolev <[email protected]>

    Fix macro indentation
---
 evil-goggles.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/evil-goggles.el b/evil-goggles.el
index a5969c3300..f395251da0 100644
--- a/evil-goggles.el
+++ b/evil-goggles.el
@@ -170,7 +170,7 @@ visualized by the hint.
 
 The hint is displayed for `evil-goggles-async-duration' seconds if
 non-nil, else for `evil-goggles-duration' seconds."
-  (declare (indent 4) (debug t))
+  (declare (indent 3) (debug t))
   `(evil-goggles--if-hint-on ,beg ,end (progn ,@body)
      (evil-goggles--show-overlay ,beg ,end ,face (or 
evil-goggles-async-duration evil-goggles-duration)
        ,@body)))
@@ -209,7 +209,7 @@ BODY is executed after the hint has been removed, hence the 
hint is
 
 The hint is displayed for `evil-goggles-blocking-duration' seconds if
 non-nil, else for `evil-goggles-duration' seconds."
-  (declare (indent 4) (debug t))
+  (declare (indent 3) (debug t))
   `(evil-goggles--if-hint-on ,beg ,end (progn ,@body)
      (if (or (eq evil-this-type 'block) evil-goggles--force-block)
          (evil-goggles--show-block-overlay ,beg ,end ,face (or 
evil-goggles-blocking-duration evil-goggles-duration))

Reply via email to