branch: elpa/helm
commit 6a5fe439055588c5cacc76a6125b04de6f6e0924
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Fix alignment in helm-locate-library
---
helm-elisp.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helm-elisp.el b/helm-elisp.el
index 6b6688b5d9..ca6cd2506a 100644
--- a/helm-elisp.el
+++ b/helm-elisp.el
@@ -939,8 +939,8 @@ description change you can reset the caches with a prefix
arg."
(if (or completions-detailed helm-completions-detailed)
(cl-loop with lgst = (helm-in-buffer-get-longest-candidate)
for c in candidates
- for sep = (make-string (1+ (- lgst (length c))) ? )
for bn = (helm-basename c 2)
+ for sep = (make-string (1+ (- lgst (length bn))) ? )
for path = (or (assoc-default bn
helm--locate-library-cache)
(let ((p (find-library-name bn)))
(push (cons bn p)
helm--locate-library-cache)