branch: externals/corfu-doc
commit 7b10759a2eb9c9cf5cddc4c30ca4ab4f677429db
Author: Yuwei Tian <[email protected]>
Commit: Yuwei Tian <[email protected]>
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.")