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

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

[elpa] externals/cape 08877dbf75 096/146: Improve comments


From: ELPA Syncer
Subject: [elpa] externals/cape 08877dbf75 096/146: Improve comments
Date: Sun, 9 Jan 2022 20:57:45 -0500 (EST)

branch: externals/cape
commit 08877dbf75d5ee9c6ed71ac8ad3817b47823e499
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Improve comments
---
 cape.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cape.el b/cape.el
index 792306c3fb..8656c3e078 100644
--- a/cape.el
+++ b/cape.el
@@ -732,14 +732,14 @@ If INTERACTIVE is nil the function acts like a capf."
 
 (defun cape--company-call (backend &rest args)
   "Call Company BACKEND with ARGS."
-  ;; Company backends are non-interruptible!
+  ;; Company backends are non-interruptible.
   (pcase (let (throw-on-input) (apply backend args))
     (`(:async . ,fetcher)
      (let ((res 'trash)
            (start (time-to-seconds)))
-       ;; Company backends are non-interruptible!
+       ;; Company backends are non-interruptible.
        (let (throw-on-input) (funcall fetcher (lambda (arg) (setq res arg))))
-       ;; Force synchronization
+       ;; Force synchronization. The synchronization is interruptible!
        (while (eq res 'trash)
          (sleep-for company-async-wait)
          (when (> (- (time-to-seconds) start) company-async-timeout)



reply via email to

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