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

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

[elpa] externals/corfu-doc 7b10759a2e 73/95: Fix warnings


From: ELPA Syncer
Subject: [elpa] externals/corfu-doc 7b10759a2e 73/95: Fix warnings
Date: Tue, 19 Jul 2022 15:58:06 -0400 (EDT)

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

    Fix warnings
---
 corfu-doc.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/corfu-doc.el b/corfu-doc.el
index 1916dd8013..d9ea8d03ee 100644
--- a/corfu-doc.el
+++ b/corfu-doc.el
@@ -111,11 +111,11 @@ Please see \"(elisp) Child Frames\" in Emacs manual for 
details."
 
 (defvar corfu-doc--frame-parameters
   (let* ((cw (default-font-width))
-         (lm (* cw corfu-left-margin-width))
-         (rm (* cw corfu-right-margin-width))
+         (lmw (* cw corfu-left-margin-width))
+         (rmw (* cw corfu-right-margin-width))
          (fp (copy-alist corfu--frame-parameters)))
-    (setf (alist-get 'left-fringe fp) (ceiling lm)
-          (alist-get 'right-fringe fp) (ceiling rm))
+    (setf (alist-get 'left-fringe fp) (ceiling lmw)
+          (alist-get 'right-fringe fp) (ceiling rmw))
     fp)
   "Default doc child frame parameters.")
 



reply via email to

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