emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil-goggles ea5ab4012a 217/225: Fix parentheses nesting


From: ELPA Syncer
Subject: [nongnu] elpa/evil-goggles ea5ab4012a 217/225: Fix parentheses nesting
Date: Wed, 12 Jan 2022 08:59:10 -0500 (EST)

branch: elpa/evil-goggles
commit ea5ab4012af0eb451e2c0d996455c58f1554f7c1
Author: Evgeni Kolev <evgenysw@gmail.com>
Commit: Evgeni Kolev <evgenysw@gmail.com>

    Fix parentheses nesting
---
 evil-goggles.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/evil-goggles.el b/evil-goggles.el
index 2b8304ffcf..ad560b29a3 100644
--- a/evil-goggles.el
+++ b/evil-goggles.el
@@ -328,14 +328,14 @@ which take BEG and END as their first and second 
arguments."
   (with-local-quit
     (when (overlayp evil-goggles--async-ov)
       (delete-overlay evil-goggles--async-ov)
-      (setq evil-goggles--async-ov nil)
+      (setq evil-goggles--async-ov nil))
     (when (timerp evil-goggles--timer)
       (cancel-timer evil-goggles--timer)
-      (setq evil-goggles--timer nil)
-    (remove-hook 'pre-command-hook 'evil-goggles--vanish)))))
+      (setq evil-goggles--timer nil))
+    (remove-hook 'pre-command-hook 'evil-goggles--vanish)))
 
 (defun evil-goggles--show-async-hint (beg end)
-  "Show blocking hint from BEG to END."
+  "Show asynchronous hint from BEG to END."
   (let ((ov (evil-goggles--make-overlay beg end 'insert-behind-hooks 
'(evil-goggles--overlay-insert-behind-hook)))
         (dur (or evil-goggles-async-duration evil-goggles-duration))
         (face (evil-goggles--get-face this-command)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]