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

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

[elpa] externals/corfu-doc caccd94757 88/95: Inline the function to get


From: ELPA Syncer
Subject: [elpa] externals/corfu-doc caccd94757 88/95: Inline the function to get coordinates of the corfu popup
Date: Tue, 19 Jul 2022 15:58:07 -0400 (EDT)

branch: externals/corfu-doc
commit caccd9475783cfc12ab5c49d44b6ca7535e84a4a
Author: Yuwei Tian <ibluefocus@outlook.com>
Commit: Yuwei Tian <ibluefocus@outlook.com>

    Inline the function to get coordinates of the corfu popup
---
 corfu-doc.el | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/corfu-doc.el b/corfu-doc.el
index 3c0db30a09..b3ac2f194b 100644
--- a/corfu-doc.el
+++ b/corfu-doc.el
@@ -388,10 +388,6 @@ FWIDTH and FHEIGHT."
   (and (> corfu--total 0)
        (nth corfu--index corfu--candidates)))
 
-(defun corfu-doc--get-cf-popup-edges ()
-  "Get coordinates of the corfu popup."
-  (frame-edges corfu--frame 'inner))
-
 (defun corfu-doc--should-refresh-popup (candidate)
   "Determine whether the doc popup should be refreshed.
 
@@ -411,7 +407,7 @@ compared with the value recorded by `corfu-doc--candiate'."
            (corfu-doc--calc-popup-position
             (frame-pixel-width corfu-doc--frame)
             (frame-pixel-height corfu-doc--frame)))
-    (setq corfu-doc--cf-popup-edges (corfu-doc--get-cf-popup-edges))))
+    (setq corfu-doc--cf-popup-edges (frame-edges corfu--frame 'inner))))
 
 (defun corfu-doc--update-popup (doc)
   "Update the documentation popup with the DOC content."
@@ -443,7 +439,7 @@ The optional CANDIDATE-INDEX is the the current completion 
candidate index."
     (error "Corfu-doc requires child frames to display documentation"))
   (when (corfu-doc--should-show-popup candidate-index)
     (when-let ((candidate (corfu-doc--get-candidate))
-               (cf-popup-edges (corfu-doc--get-cf-popup-edges)))
+               (cf-popup-edges (frame-edges corfu--frame 'inner)))
       (if (corfu-doc--should-refresh-popup candidate)
           (corfu-doc--refresh-popup)
         ;; fetch documentation and show
@@ -499,7 +495,7 @@ The optional CANDIDATE-INDEX is the the current completion 
candidate index."
 
 (defun corfu-doc--cf-popup-edges-changed-p ()
   "Determine whether the coordinates of the corfu popup have changed."
-  (not (equal (corfu-doc--get-cf-popup-edges)
+  (not (equal (frame-edges corfu--frame 'inner)
               corfu-doc--cf-popup-edges)))
 
 (defun corfu-doc--popup-transition ()



reply via email to

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