branch: elpa/helm commit 202928b70eacdb3d9b4175f62b8345520b683c98 Author: Thierry Volpiatto <thie...@posteo.net> Commit: Thierry Volpiatto <thie...@posteo.net>
Default to zero and not len in helm-make-separator --- helm-core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-core.el b/helm-core.el index 3c9d1a4b19..859c539db0 100644 --- a/helm-core.el +++ b/helm-core.el @@ -6908,7 +6908,7 @@ LONGEST can be used to specify longest candidate." (len (length cand))) (make-string (1+ (if (>= lgst len) (- lgst len) - len)) + 0)) ? ))) (defun helm-init-candidates-in-buffer (buffer-spec data &optional force-longest)