summaryrefslogtreecommitdiff
path: root/cider-cheatsheet.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-01-30 15:58:14 +0700
committerBozhidar Batsov <bozhidar@batsov.com>2018-01-30 15:58:14 +0700
commit4e95ccef3cb21ede80e94fe26965ccd81e5d6a08 (patch)
treef43d6c51de51dab12f2493b8c585462b6bd348ed /cider-cheatsheet.el
parentdf747fdb7a879d11527bf37c91f6305603886353 (diff)
Remove redundant seq-filter
I made a mistake with this one, it's not needed at all.
Diffstat (limited to 'cider-cheatsheet.el')
-rw-r--r--cider-cheatsheet.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-cheatsheet.el b/cider-cheatsheet.el
index f562c700..db88fd76 100644
--- a/cider-cheatsheet.el
+++ b/cider-cheatsheet.el
@@ -528,7 +528,7 @@ When you make it to a Clojure var its doc buffer gets displayed."
(let ((section nil)
(cheatsheet-data cider-cheatsheet-hierarchy))
(while (stringp (caar cheatsheet-data))
- (let* ((sections (seq-filter #'stringp (mapcar #'car cheatsheet-data)))
+ (let* ((sections (mapcar #'car cheatsheet-data))
(sel-section (completing-read "Select cheatsheet section: " sections))
(section-data (seq-find (lambda (elem) (equal (car elem) sel-section)) cheatsheet-data)))
(setq section sel-section)