We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa02e3b commit ba66955Copy full SHA for ba66955
cider-stacktrace.el
@@ -26,7 +26,7 @@
26
;;; Code:
27
28
(require 'button)
29
-
+(require 'dash)
30
31
;; Variables
32
@@ -139,7 +139,7 @@ Update `cider-stacktrace-hidden-frame-count' and indicate filters applied."
139
(hidden 0))
140
(while (not (eobp))
141
(let* ((flags (get-text-property (point) 'flags))
142
- (hide (if (intersection filters flags) t nil)))
+ (hide (if (-intersection filters flags) t nil)))
143
(when hide (setq hidden (+ 1 hidden)))
144
(put-text-property (point) (line-beginning-position 2) 'invisible hide))
145
(forward-line 1))
0 commit comments