Skip to content

Commit 12faa9a

Browse files
committed
Switch back to seq-contains
A lot of people experienced breakages with seq-contains-p, so we're better off with a deprecation message instead.
1 parent 569e8e2 commit 12faa9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nrepl-client.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ FOREGROUND and BUTTON are as in `nrepl-log-pp-object'."
12791279
(name-lengths (seq-map (lambda (pair) (length (car pair))) sorted-pairs))
12801280
(longest-name (seq-max name-lengths))
12811281
;; Special entries are displayed first
1282-
(specialq (lambda (pair) (seq-contains-p '("id" "op" "session" "time-stamp") (car pair))))
1282+
(specialq (lambda (pair) (seq-contains '("id" "op" "session" "time-stamp") (car pair))))
12831283
(special-pairs (seq-filter specialq sorted-pairs))
12841284
(not-special-pairs (seq-remove specialq sorted-pairs))
12851285
(all-pairs (seq-concatenate 'list special-pairs not-special-pairs))

0 commit comments

Comments
 (0)