branch: master
commit cbc88c7c1c98ae23bdb8e1828a62ef0e8e53552a
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
counsel.el (counsel-variable-list): Delete empty name
---
counsel.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/counsel.el b/counsel.el
index d2dd1a7..6ee6a83 100644
--- a/counsel.el
+++ b/counsel.el
@@ -444,7 +444,7 @@ Update the minibuffer with the amount of lines collected
every
(when (or (get vv 'variable-documentation)
(and (boundp vv) (not (keywordp vv))))
(push (symbol-name vv) cands))))
- cands))
+ (delete "" cands)))
(defun counsel-describe-variable-transformer (var)
"Propertize VAR if it's a custom variable."