branch: elpa/evil-numbers
commit 70b986276a57bd21c6112ebeb1e768544263fdea
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Cleanup: declare nums as `(list)` for readability
---
evil-numbers.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/evil-numbers.el b/evil-numbers.el
index 19c9b68725..6cf9a1f2e1 100644
--- a/evil-numbers.el
+++ b/evil-numbers.el
@@ -122,7 +122,7 @@
"Format NUMBER as binary.
Fill up to WIDTH with FILLCHAR (defaults to ?0) if binary
representation of NUMBER is smaller."
- (let (nums
+ (let ((nums (list))
(fillchar (or fillchar ?0)))
(while (> number 0)
(push (number-to-string (% number 2)) nums)