summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--corfu.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/corfu.el b/corfu.el
index 4460039..6918757 100644
--- a/corfu.el
+++ b/corfu.el
@@ -605,10 +605,9 @@ completion began less than that number of seconds ago."
(concat prefix
(make-string (- pw (string-width prefix)) ?\s)
cand
- (unless (eq suffix "")
- (make-string (+ (- cw (string-width cand))
- (- sw (string-width suffix)))
- ?\s))
+ (make-string (+ (- cw (string-width cand))
+ (- sw (string-width suffix)))
+ ?\s)
suffix)
width))
cands)))