Skip to content

Commit 23cb95d

Browse files
author
Bozhidar Batsov
committed
Fix a unused variable warning
1 parent 3fa71aa commit 23cb95d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-util.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ buffer-local wherever it is set."
5454
(defun cider-util--hash-keys (hashtable)
5555
"Return a list of keys in HASHTABLE."
5656
(let ((keys '()))
57-
(maphash (lambda (k v) (setq keys (cons k keys))) hashtable)
57+
(maphash (lambda (k _v) (setq keys (cons k keys))) hashtable)
5858
keys))
5959

6060
(defun cider-util--clojure-buffers ()

0 commit comments

Comments
 (0)