Skip to content

Commit ba66955

Browse files
author
Bozhidar Batsov
committed
Fix a compilation warning
1 parent fa02e3b commit ba66955

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cider-stacktrace.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
;;; Code:
2727

2828
(require 'button)
29-
29+
(require 'dash)
3030

3131
;; Variables
3232

@@ -139,7 +139,7 @@ Update `cider-stacktrace-hidden-frame-count' and indicate filters applied."
139139
(hidden 0))
140140
(while (not (eobp))
141141
(let* ((flags (get-text-property (point) 'flags))
142-
(hide (if (intersection filters flags) t nil)))
142+
(hide (if (-intersection filters flags) t nil)))
143143
(when hide (setq hidden (+ 1 hidden)))
144144
(put-text-property (point) (line-beginning-position 2) 'invisible hide))
145145
(forward-line 1))

0 commit comments

Comments
 (0)