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 12faa9a commit abc32b0Copy full SHA for abc32b0
nrepl-client.el
@@ -1279,7 +1279,7 @@ FOREGROUND and BUTTON are as in `nrepl-log-pp-object'."
1279
(name-lengths (seq-map (lambda (pair) (length (car pair))) sorted-pairs))
1280
(longest-name (seq-max name-lengths))
1281
;; Special entries are displayed first
1282
- (specialq (lambda (pair) (seq-contains '("id" "op" "session" "time-stamp") (car pair))))
+ (specialq (lambda (pair) (member (car pair) '("id" "op" "session" "time-stamp"))))
1283
(special-pairs (seq-filter specialq sorted-pairs))
1284
(not-special-pairs (seq-remove specialq sorted-pairs))
1285
(all-pairs (seq-concatenate 'list special-pairs not-special-pairs))
0 commit comments